2024-09-16T14:16:16.405 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-16T14:16:16.421 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T14:16:16.496 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734 branch: reef description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7906734' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi no_nested_subset: false os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: reef ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: 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: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 workunit: branch: reef sha1: ae7f37330c1a72493684eb1fcaed6f2a01195bb6 owner: scheduled_teuthology@teuthology priority: 931 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: 1390 sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 sleep_before_teardown: 0 subset: 5319/100000 suite: rados suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: ae7f37330c1a72493684eb1fcaed6f2a01195bb6 targets: smithi019.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBA9q38lgLB6lEzy9249VI/4vIe62eK8z8Ie8N9rRlOuLm9cq/Lj00UiBZtfaRntNwf/wki16lZ9EqIpHHGxR4jk= smithi139.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMNvMYwSGBP4kbf1ajwR5mZIr8KKk272FSRk0U76MO8AIAIztl5pi74po1eo2/h6HB3sMpGwbyKG+5W8CXuuUsw= smithi162.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJTwNS7hwu9uqYLkwf4yYw8XUTiqgBXBYLHi17e4iOK8IjlFSLk/DQQdgLZtQ1Dzfv9FiDRNamXNI9iVfySkPmM= 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_22:00:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-16T14:16:16.496 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa; will attempt to use it 2024-09-16T14:16:16.497 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_ae7f37330c1a72493684eb1fcaed6f2a01195bb6/qa/tasks 2024-09-16T14:16:16.497 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-16T14:16:16.499 INFO:teuthology.task.internal:Checking packages... 2024-09-16T14:16:16.519 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8' 2024-09-16T14:16:16.519 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-16T14:16:16.519 INFO:teuthology.packaging:ref: None 2024-09-16T14:16:16.519 INFO:teuthology.packaging:tag: None 2024-09-16T14:16:16.519 INFO:teuthology.packaging:branch: reef 2024-09-16T14:16:16.519 INFO:teuthology.packaging:sha1: e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:16:16.519 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=reef 2024-09-16T14:16:16.761 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-853-gae7f3733-1jammy 2024-09-16T14:16:16.763 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-16T14:16:16.774 INFO:teuthology.task.internal:no buildpackages task found 2024-09-16T14:16:16.774 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-16T14:16:16.789 INFO:teuthology.task.internal:Saving configuration 2024-09-16T14:16:16.801 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-16T14:16:16.814 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-16T14:16:16.840 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi019.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734', '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 14:10:23.901118', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFDPSdAHbYv9RETIuOpw0BiTnqhrTWwym1mAWsu6nnPs'} 2024-09-16T14:16:16.859 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi139.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734', '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 14:10:23.899603', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBmd/9/rBbBSCwD1rymM498+HuFUWTIQNhN8ee0FGgt4'} 2024-09-16T14:16:16.877 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi162.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734', '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 14:10:23.902452', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwBw8bAz3ELaEKnITJRq3UMbHMGnj/mSinJCzkRt+R/'} 2024-09-16T14:16:16.877 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-16T14:16:16.889 INFO:teuthology.task.internal:roles: ubuntu@smithi019.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-16T14:16:16.889 INFO:teuthology.task.internal:roles: ubuntu@smithi139.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-16T14:16:16.889 INFO:teuthology.task.internal:roles: ubuntu@smithi162.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-16T14:16:16.889 INFO:teuthology.run_tasks:Running task console_log... 2024-09-16T14:16:16.984 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fc5520271c0>, signals=[15]) 2024-09-16T14:16:16.984 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-16T14:16:16.995 INFO:teuthology.task.internal:Opening connections... 2024-09-16T14:16:16.996 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi019.front.sepia.ceph.com 2024-09-16T14:16:16.997 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi019.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:16:17.087 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi139.front.sepia.ceph.com 2024-09-16T14:16:17.088 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi139.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:16:17.167 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi162.front.sepia.ceph.com 2024-09-16T14:16:17.168 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:16:17.297 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-16T14:16:17.304 DEBUG:teuthology.orchestra.run.smithi019:> uname -m 2024-09-16T14:16:17.310 INFO:teuthology.orchestra.run.smithi019.stdout:x86_64 2024-09-16T14:16:17.311 DEBUG:teuthology.orchestra.run.smithi019:> cat /etc/os-release 2024-09-16T14:16:17.358 INFO:teuthology.orchestra.run.smithi019.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T14:16:17.358 INFO:teuthology.orchestra.run.smithi019.stdout:NAME="Ubuntu" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:VERSION_ID="22.04" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:VERSION_CODENAME=jammy 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:ID=ubuntu 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:ID_LIKE=debian 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T14:16:17.359 INFO:teuthology.orchestra.run.smithi019.stdout:UBUNTU_CODENAME=jammy 2024-09-16T14:16:17.360 INFO:teuthology.lock.ops:Updating smithi019.front.sepia.ceph.com on lock server 2024-09-16T14:16:17.383 DEBUG:teuthology.orchestra.run.smithi139:> uname -m 2024-09-16T14:16:17.389 INFO:teuthology.orchestra.run.smithi139.stdout:x86_64 2024-09-16T14:16:17.389 DEBUG:teuthology.orchestra.run.smithi139:> cat /etc/os-release 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:NAME="Ubuntu" 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:VERSION_ID="22.04" 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:VERSION_CODENAME=jammy 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:ID=ubuntu 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:ID_LIKE=debian 2024-09-16T14:16:17.437 INFO:teuthology.orchestra.run.smithi139.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T14:16:17.438 INFO:teuthology.orchestra.run.smithi139.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T14:16:17.438 INFO:teuthology.orchestra.run.smithi139.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T14:16:17.438 INFO:teuthology.orchestra.run.smithi139.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T14:16:17.438 INFO:teuthology.orchestra.run.smithi139.stdout:UBUNTU_CODENAME=jammy 2024-09-16T14:16:17.438 INFO:teuthology.lock.ops:Updating smithi139.front.sepia.ceph.com on lock server 2024-09-16T14:16:17.459 DEBUG:teuthology.orchestra.run.smithi162:> uname -m 2024-09-16T14:16:17.465 INFO:teuthology.orchestra.run.smithi162.stdout:x86_64 2024-09-16T14:16:17.465 DEBUG:teuthology.orchestra.run.smithi162:> cat /etc/os-release 2024-09-16T14:16:17.516 INFO:teuthology.orchestra.run.smithi162.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-16T14:16:17.516 INFO:teuthology.orchestra.run.smithi162.stdout:NAME="Ubuntu" 2024-09-16T14:16:17.516 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION_ID="22.04" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:VERSION_CODENAME=jammy 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:ID=ubuntu 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:ID_LIKE=debian 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-16T14:16:17.517 INFO:teuthology.orchestra.run.smithi162.stdout:UBUNTU_CODENAME=jammy 2024-09-16T14:16:17.517 INFO:teuthology.lock.ops:Updating smithi162.front.sepia.ceph.com on lock server 2024-09-16T14:16:17.542 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-16T14:16:17.557 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-16T14:16:17.651 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-16T14:16:17.652 DEBUG:teuthology.orchestra.run.smithi019:> test '!' -e /home/ubuntu/cephtest 2024-09-16T14:16:17.654 DEBUG:teuthology.orchestra.run.smithi139:> test '!' -e /home/ubuntu/cephtest 2024-09-16T14:16:17.656 DEBUG:teuthology.orchestra.run.smithi162:> test '!' -e /home/ubuntu/cephtest 2024-09-16T14:16:17.662 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-16T14:16:17.673 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-16T14:16:17.673 DEBUG:teuthology.orchestra.run.smithi019:> test -z $(ls -A /var/lib/ceph) 2024-09-16T14:16:17.703 DEBUG:teuthology.orchestra.run.smithi139:> test -z $(ls -A /var/lib/ceph) 2024-09-16T14:16:17.706 DEBUG:teuthology.orchestra.run.smithi162:> test -z $(ls -A /var/lib/ceph) 2024-09-16T14:16:17.715 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-16T14:16:17.797 INFO:teuthology.run_tasks:Running task kernel... 2024-09-16T14:16:17.813 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-16T14:16:17.813 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-16T14:16:17.814 DEBUG:teuthology.orchestra.run.smithi019:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T14:16:17.816 DEBUG:teuthology.orchestra.run.smithi139:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T14:16:17.816 DEBUG:teuthology.orchestra.run.smithi162:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-16T14:16:17.820 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:16:17.821 DEBUG:teuthology.orchestra.run.smithi139:> uname -r 2024-09-16T14:16:17.822 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:16:17.822 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:16:17.823 DEBUG:teuthology.orchestra.run.smithi162:> uname -r 2024-09-16T14:16:17.823 DEBUG:teuthology.orchestra.run.smithi019:> uname -r 2024-09-16T14:16:17.868 INFO:teuthology.orchestra.run.smithi162.stdout:5.15.0-56-generic 2024-09-16T14:16:17.868 INFO:teuthology.task.kernel:Running kernel on smithi162: 5.15.0-56-generic 2024-09-16T14:16:17.868 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-get clean 2024-09-16T14:16:17.869 INFO:teuthology.orchestra.run.smithi139.stdout:5.15.0-56-generic 2024-09-16T14:16:17.869 INFO:teuthology.task.kernel:Running kernel on smithi139: 5.15.0-56-generic 2024-09-16T14:16:17.870 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-get clean 2024-09-16T14:16:17.870 INFO:teuthology.orchestra.run.smithi019.stdout:5.15.0-56-generic 2024-09-16T14:16:17.871 INFO:teuthology.task.kernel:Running kernel on smithi019: 5.15.0-56-generic 2024-09-16T14:16:17.871 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-get clean 2024-09-16T14:16:17.996 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-get update 2024-09-16T14:16:17.999 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-get update 2024-09-16T14:16:18.012 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-get update 2024-09-16T14:16:18.132 INFO:teuthology.orchestra.run.smithi019.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T14:16:18.154 INFO:teuthology.orchestra.run.smithi162.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T14:16:18.241 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:16:18.259 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:16:18.286 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:16:18.286 INFO:teuthology.orchestra.run.smithi139.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-16T14:16:18.323 INFO:teuthology.orchestra.run.smithi019.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T14:16:18.338 INFO:teuthology.orchestra.run.smithi019.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T14:16:18.340 INFO:teuthology.orchestra.run.smithi162.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T14:16:18.342 INFO:teuthology.orchestra.run.smithi139.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-16T14:16:18.370 INFO:teuthology.orchestra.run.smithi162.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T14:16:18.407 INFO:teuthology.orchestra.run.smithi019.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T14:16:18.445 INFO:teuthology.orchestra.run.smithi019.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T14:16:18.449 INFO:teuthology.orchestra.run.smithi019.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T14:16:18.449 INFO:teuthology.orchestra.run.smithi019.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T14:16:18.450 INFO:teuthology.orchestra.run.smithi019.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T14:16:18.474 INFO:teuthology.orchestra.run.smithi162.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T14:16:18.476 INFO:teuthology.orchestra.run.smithi019.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T14:16:18.479 INFO:teuthology.orchestra.run.smithi162.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T14:16:18.479 INFO:teuthology.orchestra.run.smithi019.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T14:16:18.479 INFO:teuthology.orchestra.run.smithi019.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T14:16:18.481 INFO:teuthology.orchestra.run.smithi162.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T14:16:18.481 INFO:teuthology.orchestra.run.smithi162.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T14:16:18.482 INFO:teuthology.orchestra.run.smithi162.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T14:16:18.483 INFO:teuthology.orchestra.run.smithi019.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T14:16:18.488 INFO:teuthology.orchestra.run.smithi019.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T14:16:18.490 INFO:teuthology.orchestra.run.smithi019.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T14:16:18.490 INFO:teuthology.orchestra.run.smithi019.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T14:16:18.490 INFO:teuthology.orchestra.run.smithi019.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T14:16:18.501 INFO:teuthology.orchestra.run.smithi162.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T14:16:18.505 INFO:teuthology.orchestra.run.smithi162.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T14:16:18.505 INFO:teuthology.orchestra.run.smithi162.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T14:16:18.510 INFO:teuthology.orchestra.run.smithi162.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T14:16:18.517 INFO:teuthology.orchestra.run.smithi162.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T14:16:18.518 INFO:teuthology.orchestra.run.smithi162.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T14:16:18.518 INFO:teuthology.orchestra.run.smithi162.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T14:16:18.519 INFO:teuthology.orchestra.run.smithi162.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T14:16:18.519 INFO:teuthology.orchestra.run.smithi162.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T14:16:18.529 INFO:teuthology.orchestra.run.smithi019.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T14:16:18.529 INFO:teuthology.orchestra.run.smithi019.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T14:16:18.546 INFO:teuthology.orchestra.run.smithi162.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T14:16:18.680 INFO:teuthology.orchestra.run.smithi019.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T14:16:18.694 INFO:teuthology.orchestra.run.smithi162.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T14:16:18.699 INFO:teuthology.orchestra.run.smithi139.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-16T14:16:18.715 INFO:teuthology.orchestra.run.smithi139.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [539 kB] 2024-09-16T14:16:18.819 INFO:teuthology.orchestra.run.smithi019.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,025 kB] 2024-09-16T14:16:18.832 INFO:teuthology.orchestra.run.smithi162.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,025 kB] 2024-09-16T14:16:18.839 INFO:teuthology.orchestra.run.smithi139.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T14:16:19.010 INFO:teuthology.orchestra.run.smithi139.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,806 kB] 2024-09-16T14:16:19.031 INFO:teuthology.orchestra.run.smithi139.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,025 kB] 2024-09-16T14:16:19.138 INFO:teuthology.orchestra.run.smithi019.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T14:16:19.149 INFO:teuthology.orchestra.run.smithi162.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [696 kB] 2024-09-16T14:16:19.173 INFO:teuthology.orchestra.run.smithi019.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [353 kB] 2024-09-16T14:16:19.184 INFO:teuthology.orchestra.run.smithi139.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [295 kB] 2024-09-16T14:16:19.184 INFO:teuthology.orchestra.run.smithi162.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [353 kB] 2024-09-16T14:16:19.187 INFO:teuthology.orchestra.run.smithi019.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T14:16:19.188 INFO:teuthology.orchestra.run.smithi019.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T14:16:19.189 INFO:teuthology.orchestra.run.smithi019.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,441 kB] 2024-09-16T14:16:19.192 INFO:teuthology.orchestra.run.smithi139.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [353 kB] 2024-09-16T14:16:19.196 INFO:teuthology.orchestra.run.smithi139.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-16T14:16:19.197 INFO:teuthology.orchestra.run.smithi139.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-16T14:16:19.198 INFO:teuthology.orchestra.run.smithi162.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T14:16:19.199 INFO:teuthology.orchestra.run.smithi139.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,377 kB] 2024-09-16T14:16:19.199 INFO:teuthology.orchestra.run.smithi162.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T14:16:19.201 INFO:teuthology.orchestra.run.smithi162.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,441 kB] 2024-09-16T14:16:19.206 INFO:teuthology.orchestra.run.smithi139.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-16T14:16:19.207 INFO:teuthology.orchestra.run.smithi139.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-16T14:16:19.235 INFO:teuthology.orchestra.run.smithi139.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,441 kB] 2024-09-16T14:16:19.259 INFO:teuthology.orchestra.run.smithi019.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [420 kB] 2024-09-16T14:16:19.270 INFO:teuthology.orchestra.run.smithi162.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [420 kB] 2024-09-16T14:16:19.275 INFO:teuthology.orchestra.run.smithi019.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T14:16:19.275 INFO:teuthology.orchestra.run.smithi019.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T14:16:19.282 INFO:teuthology.orchestra.run.smithi139.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [409 kB] 2024-09-16T14:16:19.284 INFO:teuthology.orchestra.run.smithi162.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T14:16:19.285 INFO:teuthology.orchestra.run.smithi162.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T14:16:19.290 INFO:teuthology.orchestra.run.smithi139.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [420 kB] 2024-09-16T14:16:19.291 INFO:teuthology.orchestra.run.smithi139.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-16T14:16:19.291 INFO:teuthology.orchestra.run.smithi139.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-16T14:16:19.296 INFO:teuthology.orchestra.run.smithi019.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T14:16:19.307 INFO:teuthology.orchestra.run.smithi162.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T14:16:19.309 INFO:teuthology.orchestra.run.smithi139.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [902 kB] 2024-09-16T14:16:19.318 INFO:teuthology.orchestra.run.smithi139.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-16T14:16:19.319 INFO:teuthology.orchestra.run.smithi139.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [732 kB] 2024-09-16T14:16:19.327 INFO:teuthology.orchestra.run.smithi019.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T14:16:19.328 INFO:teuthology.orchestra.run.smithi139.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,124 kB] 2024-09-16T14:16:19.333 INFO:teuthology.orchestra.run.smithi019.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T14:16:19.333 INFO:teuthology.orchestra.run.smithi019.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T14:16:19.335 INFO:teuthology.orchestra.run.smithi019.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T14:16:19.335 INFO:teuthology.orchestra.run.smithi019.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T14:16:19.338 INFO:teuthology.orchestra.run.smithi162.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T14:16:19.343 INFO:teuthology.orchestra.run.smithi139.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-16T14:16:19.343 INFO:teuthology.orchestra.run.smithi162.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T14:16:19.344 INFO:teuthology.orchestra.run.smithi162.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T14:16:19.345 INFO:teuthology.orchestra.run.smithi162.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T14:16:19.345 INFO:teuthology.orchestra.run.smithi162.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T14:16:19.348 INFO:teuthology.orchestra.run.smithi139.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-16T14:16:19.349 INFO:teuthology.orchestra.run.smithi139.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-16T14:16:19.349 INFO:teuthology.orchestra.run.smithi139.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-16T14:16:19.350 INFO:teuthology.orchestra.run.smithi139.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-16T14:16:19.352 INFO:teuthology.orchestra.run.smithi139.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-16T14:16:19.358 INFO:teuthology.orchestra.run.smithi139.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-16T14:16:19.359 INFO:teuthology.orchestra.run.smithi139.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-16T14:16:19.359 INFO:teuthology.orchestra.run.smithi139.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-16T14:16:19.360 INFO:teuthology.orchestra.run.smithi139.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-16T14:16:19.388 INFO:teuthology.orchestra.run.smithi019.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T14:16:19.388 INFO:teuthology.orchestra.run.smithi019.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T14:16:19.390 INFO:teuthology.orchestra.run.smithi019.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T14:16:19.391 INFO:teuthology.orchestra.run.smithi019.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T14:16:19.393 INFO:teuthology.orchestra.run.smithi162.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T14:16:19.394 INFO:teuthology.orchestra.run.smithi162.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T14:16:19.395 INFO:teuthology.orchestra.run.smithi162.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T14:16:19.397 INFO:teuthology.orchestra.run.smithi162.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T14:16:19.430 INFO:teuthology.orchestra.run.smithi139.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-16T14:16:19.439 INFO:teuthology.orchestra.run.smithi139.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-16T14:16:19.439 INFO:teuthology.orchestra.run.smithi139.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-16T14:16:19.440 INFO:teuthology.orchestra.run.smithi139.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-16T14:16:19.441 INFO:teuthology.orchestra.run.smithi139.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-16T14:16:19.442 INFO:teuthology.orchestra.run.smithi139.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T14:16:19.469 INFO:teuthology.orchestra.run.smithi019.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T14:16:19.470 INFO:teuthology.orchestra.run.smithi019.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T14:16:19.470 INFO:teuthology.orchestra.run.smithi019.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T14:16:19.471 INFO:teuthology.orchestra.run.smithi019.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T14:16:19.472 INFO:teuthology.orchestra.run.smithi019.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T14:16:19.475 INFO:teuthology.orchestra.run.smithi162.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-16T14:16:19.475 INFO:teuthology.orchestra.run.smithi162.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T14:16:19.476 INFO:teuthology.orchestra.run.smithi162.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T14:16:19.476 INFO:teuthology.orchestra.run.smithi162.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T14:16:19.477 INFO:teuthology.orchestra.run.smithi162.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T14:16:19.520 INFO:teuthology.orchestra.run.smithi139.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-16T14:16:19.521 INFO:teuthology.orchestra.run.smithi139.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-16T14:16:19.522 INFO:teuthology.orchestra.run.smithi139.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-16T14:16:19.522 INFO:teuthology.orchestra.run.smithi139.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-16T14:16:24.701 INFO:teuthology.orchestra.run.smithi162.stdout:Fetched 16.0 MB in 2s (7,428 kB/s) 2024-09-16T14:16:25.113 INFO:teuthology.orchestra.run.smithi019.stdout:Fetched 16.0 MB in 2s (7,329 kB/s) 2024-09-16T14:16:25.315 INFO:teuthology.orchestra.run.smithi139.stdout:Fetched 16.0 MB in 3s (5,896 kB/s) 2024-09-16T14:16:26.120 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:16:26.138 DEBUG:teuthology.orchestra.run.smithi162:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:16:26.199 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:16:26.409 INFO:teuthology.orchestra.run.smithi162.stdout:Building dependency tree... 2024-09-16T14:16:26.409 INFO:teuthology.orchestra.run.smithi162.stdout:Reading state information... 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T14:16:26.582 INFO:teuthology.orchestra.run.smithi162.stdout: python2.7-minimal 2024-09-16T14:16:26.583 INFO:teuthology.orchestra.run.smithi162.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:16:26.584 INFO:teuthology.orchestra.run.smithi162.stdout:The following additional packages will be installed: 2024-09-16T14:16:26.584 INFO:teuthology.orchestra.run.smithi162.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:26.584 INFO:teuthology.orchestra.run.smithi162.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T14:16:26.584 INFO:teuthology.orchestra.run.smithi162.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:26.585 INFO:teuthology.orchestra.run.smithi162.stdout:Suggested packages: 2024-09-16T14:16:26.585 INFO:teuthology.orchestra.run.smithi162.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T14:16:26.586 INFO:teuthology.orchestra.run.smithi162.stdout:Recommended packages: 2024-09-16T14:16:26.586 INFO:teuthology.orchestra.run.smithi162.stdout: thermald 2024-09-16T14:16:26.606 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:16:26.624 DEBUG:teuthology.orchestra.run.smithi019:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:16:26.642 INFO:teuthology.orchestra.run.smithi162.stdout:The following NEW packages will be installed: 2024-09-16T14:16:26.642 INFO:teuthology.orchestra.run.smithi162.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:26.642 INFO:teuthology.orchestra.run.smithi162.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T14:16:26.643 INFO:teuthology.orchestra.run.smithi162.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:26.644 INFO:teuthology.orchestra.run.smithi162.stdout:The following packages will be upgraded: 2024-09-16T14:16:26.645 INFO:teuthology.orchestra.run.smithi162.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T14:16:26.678 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:16:26.790 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:16:26.808 DEBUG:teuthology.orchestra.run.smithi139:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:16:26.825 INFO:teuthology.orchestra.run.smithi162.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:16:26.825 INFO:teuthology.orchestra.run.smithi162.stdout:Need to get 113 MB of archives. 2024-09-16T14:16:26.825 INFO:teuthology.orchestra.run.smithi162.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T14:16:26.825 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:26.869 INFO:teuthology.orchestra.run.smithi019.stdout:Building dependency tree... 2024-09-16T14:16:26.870 INFO:teuthology.orchestra.run.smithi019.stdout:Reading state information... 2024-09-16T14:16:26.874 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:16:27.047 INFO:teuthology.orchestra.run.smithi019.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:16:27.047 INFO:teuthology.orchestra.run.smithi019.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:16:27.047 INFO:teuthology.orchestra.run.smithi019.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:16:27.047 INFO:teuthology.orchestra.run.smithi019.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:16:27.047 INFO:teuthology.orchestra.run.smithi019.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T14:16:27.048 INFO:teuthology.orchestra.run.smithi019.stdout: python2.7-minimal 2024-09-16T14:16:27.048 INFO:teuthology.orchestra.run.smithi019.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:16:27.049 INFO:teuthology.orchestra.run.smithi019.stdout:The following additional packages will be installed: 2024-09-16T14:16:27.049 INFO:teuthology.orchestra.run.smithi019.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:27.049 INFO:teuthology.orchestra.run.smithi019.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T14:16:27.049 INFO:teuthology.orchestra.run.smithi019.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:27.050 INFO:teuthology.orchestra.run.smithi019.stdout:Suggested packages: 2024-09-16T14:16:27.051 INFO:teuthology.orchestra.run.smithi019.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T14:16:27.051 INFO:teuthology.orchestra.run.smithi019.stdout:Recommended packages: 2024-09-16T14:16:27.051 INFO:teuthology.orchestra.run.smithi019.stdout: thermald 2024-09-16T14:16:27.066 INFO:teuthology.orchestra.run.smithi139.stdout:Building dependency tree... 2024-09-16T14:16:27.066 INFO:teuthology.orchestra.run.smithi139.stdout:Reading state information... 2024-09-16T14:16:27.092 INFO:teuthology.orchestra.run.smithi019.stdout:The following NEW packages will be installed: 2024-09-16T14:16:27.092 INFO:teuthology.orchestra.run.smithi019.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:27.092 INFO:teuthology.orchestra.run.smithi019.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T14:16:27.092 INFO:teuthology.orchestra.run.smithi019.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:27.093 INFO:teuthology.orchestra.run.smithi019.stdout:The following packages will be upgraded: 2024-09-16T14:16:27.094 INFO:teuthology.orchestra.run.smithi019.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T14:16:27.144 INFO:teuthology.orchestra.run.smithi019.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:16:27.145 INFO:teuthology.orchestra.run.smithi019.stdout:Need to get 113 MB of archives. 2024-09-16T14:16:27.145 INFO:teuthology.orchestra.run.smithi019.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T14:16:27.145 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:27.231 INFO:teuthology.orchestra.run.smithi139.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:16:27.231 INFO:teuthology.orchestra.run.smithi139.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:16:27.231 INFO:teuthology.orchestra.run.smithi139.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:16:27.232 INFO:teuthology.orchestra.run.smithi139.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:16:27.232 INFO:teuthology.orchestra.run.smithi139.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-16T14:16:27.232 INFO:teuthology.orchestra.run.smithi139.stdout: python2.7-minimal 2024-09-16T14:16:27.232 INFO:teuthology.orchestra.run.smithi139.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:16:27.233 INFO:teuthology.orchestra.run.smithi139.stdout:The following additional packages will be installed: 2024-09-16T14:16:27.233 INFO:teuthology.orchestra.run.smithi139.stdout: linux-generic linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:27.233 INFO:teuthology.orchestra.run.smithi139.stdout: linux-headers-generic linux-image-5.15.0-121-generic 2024-09-16T14:16:27.234 INFO:teuthology.orchestra.run.smithi139.stdout: linux-modules-5.15.0-121-generic linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:27.235 INFO:teuthology.orchestra.run.smithi139.stdout:Suggested packages: 2024-09-16T14:16:27.235 INFO:teuthology.orchestra.run.smithi139.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-16T14:16:27.235 INFO:teuthology.orchestra.run.smithi139.stdout:Recommended packages: 2024-09-16T14:16:27.235 INFO:teuthology.orchestra.run.smithi139.stdout: thermald 2024-09-16T14:16:27.281 INFO:teuthology.orchestra.run.smithi139.stdout:The following NEW packages will be installed: 2024-09-16T14:16:27.281 INFO:teuthology.orchestra.run.smithi139.stdout: linux-headers-5.15.0-121 linux-headers-5.15.0-121-generic 2024-09-16T14:16:27.281 INFO:teuthology.orchestra.run.smithi139.stdout: linux-image-5.15.0-121-generic linux-modules-5.15.0-121-generic 2024-09-16T14:16:27.281 INFO:teuthology.orchestra.run.smithi139.stdout: linux-modules-extra-5.15.0-121-generic 2024-09-16T14:16:27.283 INFO:teuthology.orchestra.run.smithi139.stdout:The following packages will be upgraded: 2024-09-16T14:16:27.283 INFO:teuthology.orchestra.run.smithi139.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-16T14:16:27.462 INFO:teuthology.orchestra.run.smithi139.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:16:27.462 INFO:teuthology.orchestra.run.smithi139.stdout:Need to get 113 MB of archives. 2024-09-16T14:16:27.462 INFO:teuthology.orchestra.run.smithi139.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-16T14:16:27.463 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:27.577 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:27.672 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.247 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:28.454 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.454 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.454 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.582 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.603 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:28.656 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:28.972 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:29.021 INFO:teuthology.orchestra.run.smithi019.stdout:Fetched 113 MB in 2s (75.4 MB/s) 2024-09-16T14:16:29.190 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T14:16:29.326 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:30.846 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:30.846 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:30.846 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:31.191 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:31.255 INFO:teuthology.orchestra.run.smithi019.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-16T14:16:31.259 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:31.270 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:31.378 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:31.536 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:31.536 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:31.536 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:31.656 INFO:teuthology.orchestra.run.smithi162.stdout:Fetched 113 MB in 5s (24.5 MB/s) 2024-09-16T14:16:31.829 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T14:16:31.912 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:31.991 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:32.378 INFO:teuthology.orchestra.run.smithi139.stdout:Fetched 113 MB in 5s (24.1 MB/s) 2024-09-16T14:16:32.566 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package linux-modules-5.15.0-121-generic. 2024-09-16T14:16:33.438 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T14:16:33.459 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:33.548 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:33.899 INFO:teuthology.orchestra.run.smithi162.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-16T14:16:33.903 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:33.966 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T14:16:33.987 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:34.016 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:34.051 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:34.494 INFO:teuthology.orchestra.run.smithi139.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-16T14:16:34.498 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../0-linux-modules-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:34.562 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:36.251 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T14:16:36.272 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:36.353 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:36.780 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package linux-image-5.15.0-121-generic. 2024-09-16T14:16:36.801 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../1-linux-image-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:36.812 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T14:16:36.833 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:36.870 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:36.877 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:37.300 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-121-generic. 2024-09-16T14:16:37.320 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:37.358 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:40.207 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:40.333 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:40.658 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:40.779 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:41.056 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T14:16:41.079 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T14:16:41.123 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:42.670 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:42.788 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:43.099 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../3-linux-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:43.104 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:43.208 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:43.225 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:43.503 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T14:16:43.514 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T14:16:43.542 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:43.552 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:43.662 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-image-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:43.982 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package linux-headers-5.15.0-121. 2024-09-16T14:16:44.004 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../5-linux-headers-5.15.0-121_5.15.0-121.131_all.deb ... 2024-09-16T14:16:44.048 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:46.647 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T14:16:46.684 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:46.713 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:49.153 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T14:16:49.190 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:49.228 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:49.611 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package linux-headers-5.15.0-121-generic. 2024-09-16T14:16:49.649 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../6-linux-headers-5.15.0-121-generic_5.15.0-121.131_amd64.deb ... 2024-09-16T14:16:49.696 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:49.709 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:49.834 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:50.185 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:50.306 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:50.432 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T14:16:50.560 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:51.748 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:51.873 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:51.915 INFO:teuthology.orchestra.run.smithi019.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:16:51.915 INFO:teuthology.orchestra.run.smithi019.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T14:16:51.915 INFO:teuthology.orchestra.run.smithi019.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:16:51.916 INFO:teuthology.orchestra.run.smithi019.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T14:16:52.080 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:52.181 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:52.236 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.121.121_amd64.deb ... 2024-09-16T14:16:52.294 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:52.337 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking linux-headers-generic (5.15.0.121.121) over (5.15.0.56.54) ... 2024-09-16T14:16:52.404 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T14:16:52.531 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:52.653 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-headers-5.15.0-121 (5.15.0-121.131) ... 2024-09-16T14:16:52.784 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-headers-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:52.910 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-headers-generic (5.15.0.121.121) ... 2024-09-16T14:16:53.037 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:53.930 INFO:teuthology.orchestra.run.smithi162.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:16:53.931 INFO:teuthology.orchestra.run.smithi162.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T14:16:53.931 INFO:teuthology.orchestra.run.smithi162.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:16:53.931 INFO:teuthology.orchestra.run.smithi162.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T14:16:54.065 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:54.400 INFO:teuthology.orchestra.run.smithi139.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:16:54.400 INFO:teuthology.orchestra.run.smithi139.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-16T14:16:54.400 INFO:teuthology.orchestra.run.smithi139.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:16:54.400 INFO:teuthology.orchestra.run.smithi139.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-121-generic 2024-09-16T14:16:54.552 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:54.607 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-modules-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:55.833 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T14:16:55.944 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:55.967 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T14:16:55.999 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-modules-extra-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:56.093 INFO:teuthology.orchestra.run.smithi019.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:56.164 INFO:teuthology.orchestra.run.smithi019.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T14:16:56.165 INFO:teuthology.orchestra.run.smithi019.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:16:57.367 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T14:16:57.445 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-image-generic (5.15.0.121.121) ... 2024-09-16T14:16:57.501 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T14:16:57.571 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up linux-generic (5.15.0.121.121) ... 2024-09-16T14:16:57.628 INFO:teuthology.orchestra.run.smithi139.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:57.688 INFO:teuthology.orchestra.run.smithi139.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T14:16:57.688 INFO:teuthology.orchestra.run.smithi139.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:16:57.697 INFO:teuthology.orchestra.run.smithi162.stdout:Processing triggers for linux-image-5.15.0-121-generic (5.15.0-121.131) ... 2024-09-16T14:16:57.773 INFO:teuthology.orchestra.run.smithi162.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-16T14:16:57.773 INFO:teuthology.orchestra.run.smithi162.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:10.998 INFO:teuthology.orchestra.run.smithi019.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T14:17:10.998 INFO:teuthology.orchestra.run.smithi019.stdout:Sourcing file `/etc/default/grub' 2024-09-16T14:17:11.012 INFO:teuthology.orchestra.run.smithi019.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:11.034 INFO:teuthology.orchestra.run.smithi019.stdout:Generating grub configuration file ... 2024-09-16T14:17:11.273 INFO:teuthology.orchestra.run.smithi019.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:11.322 INFO:teuthology.orchestra.run.smithi019.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:11.558 INFO:teuthology.orchestra.run.smithi139.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T14:17:11.558 INFO:teuthology.orchestra.run.smithi139.stdout:Sourcing file `/etc/default/grub' 2024-09-16T14:17:11.577 INFO:teuthology.orchestra.run.smithi139.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:11.589 INFO:teuthology.orchestra.run.smithi139.stdout:Generating grub configuration file ... 2024-09-16T14:17:11.656 INFO:teuthology.orchestra.run.smithi019.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:11.662 INFO:teuthology.orchestra.run.smithi019.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:11.670 INFO:teuthology.orchestra.run.smithi162.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-16T14:17:11.671 INFO:teuthology.orchestra.run.smithi162.stdout:Sourcing file `/etc/default/grub' 2024-09-16T14:17:11.682 INFO:teuthology.orchestra.run.smithi162.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:11.696 INFO:teuthology.orchestra.run.smithi162.stdout:Generating grub configuration file ... 2024-09-16T14:17:11.739 INFO:teuthology.orchestra.run.smithi019.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:11.745 INFO:teuthology.orchestra.run.smithi019.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:11.845 INFO:teuthology.orchestra.run.smithi139.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:11.859 INFO:teuthology.orchestra.run.smithi139.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:11.894 INFO:teuthology.orchestra.run.smithi019.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:11.895 INFO:teuthology.orchestra.run.smithi019.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:11.895 INFO:teuthology.orchestra.run.smithi019.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:11.932 INFO:teuthology.orchestra.run.smithi019.stdout:done 2024-09-16T14:17:11.933 INFO:teuthology.orchestra.run.smithi162.stdout:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:11.958 INFO:teuthology.orchestra.run.smithi162.stdout:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:12.153 INFO:teuthology.orchestra.run.smithi139.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:12.159 INFO:teuthology.orchestra.run.smithi139.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:12.228 INFO:teuthology.orchestra.run.smithi162.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:12.231 INFO:teuthology.orchestra.run.smithi139.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:12.234 INFO:teuthology.orchestra.run.smithi162.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:12.237 INFO:teuthology.orchestra.run.smithi139.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:12.309 INFO:teuthology.orchestra.run.smithi162.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:12.315 INFO:teuthology.orchestra.run.smithi162.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:12.409 INFO:teuthology.orchestra.run.smithi139.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:12.409 INFO:teuthology.orchestra.run.smithi139.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:12.409 INFO:teuthology.orchestra.run.smithi139.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:12.436 DEBUG:teuthology.orchestra.run.smithi019:> dpkg -s linux-image-generic 2024-09-16T14:17:12.451 INFO:teuthology.orchestra.run.smithi139.stdout:done 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Package: linux-image-generic 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Status: install ok installed 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Priority: optional 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Section: kernel 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Installed-Size: 21 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Architecture: amd64 2024-09-16T14:17:12.462 INFO:teuthology.orchestra.run.smithi019.stdout:Source: linux-meta 2024-09-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.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-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.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-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.stdout:Recommends: thermald 2024-09-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:12.463 INFO:teuthology.orchestra.run.smithi019.stdout: available. 2024-09-16T14:17:12.463 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T14:17:12.463 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T14:17:12.464 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T14:17:12.464 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-16T14:17:12.464 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi019.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T14:17:12.464 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-get clean 2024-09-16T14:17:12.467 INFO:teuthology.orchestra.run.smithi162.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:12.467 INFO:teuthology.orchestra.run.smithi162.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:12.467 INFO:teuthology.orchestra.run.smithi162.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:12.511 INFO:teuthology.orchestra.run.smithi162.stdout:done 2024-09-16T14:17:12.596 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-get update 2024-09-16T14:17:12.944 DEBUG:teuthology.orchestra.run.smithi139:> dpkg -s linux-image-generic 2024-09-16T14:17:12.969 DEBUG:teuthology.orchestra.run.smithi162:> dpkg -s linux-image-generic 2024-09-16T14:17:12.971 INFO:teuthology.orchestra.run.smithi139.stdout:Package: linux-image-generic 2024-09-16T14:17:12.971 INFO:teuthology.orchestra.run.smithi139.stdout:Status: install ok installed 2024-09-16T14:17:12.971 INFO:teuthology.orchestra.run.smithi139.stdout:Priority: optional 2024-09-16T14:17:12.971 INFO:teuthology.orchestra.run.smithi139.stdout:Section: kernel 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Installed-Size: 21 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Architecture: amd64 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Source: linux-meta 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.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-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.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-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Recommends: thermald 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:12.972 INFO:teuthology.orchestra.run.smithi139.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:12.973 INFO:teuthology.orchestra.run.smithi139.stdout: available. 2024-09-16T14:17:12.973 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T14:17:12.973 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T14:17:12.973 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T14:17:12.973 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-16T14:17:12.973 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi139.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T14:17:12.973 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-get clean 2024-09-16T14:17:12.986 INFO:teuthology.orchestra.run.smithi162.stdout:Package: linux-image-generic 2024-09-16T14:17:12.986 INFO:teuthology.orchestra.run.smithi162.stdout:Status: install ok installed 2024-09-16T14:17:12.986 INFO:teuthology.orchestra.run.smithi162.stdout:Priority: optional 2024-09-16T14:17:12.986 INFO:teuthology.orchestra.run.smithi162.stdout:Section: kernel 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Installed-Size: 21 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Architecture: amd64 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Source: linux-meta 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.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-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.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-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Recommends: thermald 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:12.987 INFO:teuthology.orchestra.run.smithi162.stdout: available. 2024-09-16T14:17:12.987 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-121-generic 2024-09-16T14:17:12.988 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-16T14:17:12.988 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-16T14:17:12.988 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-16T14:17:12.988 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi162.front.sepia.ceph.com, path=None, version=distro) 2024-09-16T14:17:12.988 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-get clean 2024-09-16T14:17:13.136 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-get update 2024-09-16T14:17:13.138 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-get update 2024-09-16T14:17:15.699 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:17:15.699 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:17:15.708 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:17:16.033 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:17:16.039 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:17:16.046 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:17:16.057 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:17:16.108 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:17:16.130 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:17:16.163 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:17:16.189 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:17:16.237 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:17:17.353 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:17:17.371 DEBUG:teuthology.orchestra.run.smithi019:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:17:17.437 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:17:17.490 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:17:17.509 DEBUG:teuthology.orchestra.run.smithi139:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:17:17.559 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:17:17.573 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:17:17.578 DEBUG:teuthology.orchestra.run.smithi162:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-16T14:17:17.640 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:17:17.653 INFO:teuthology.orchestra.run.smithi019.stdout:Building dependency tree... 2024-09-16T14:17:17.653 INFO:teuthology.orchestra.run.smithi019.stdout:Reading state information... 2024-09-16T14:17:17.785 INFO:teuthology.orchestra.run.smithi139.stdout:Building dependency tree... 2024-09-16T14:17:17.786 INFO:teuthology.orchestra.run.smithi139.stdout:Reading state information... 2024-09-16T14:17:17.848 INFO:teuthology.orchestra.run.smithi019.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T14:17:17.848 INFO:teuthology.orchestra.run.smithi019.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:17:17.849 INFO:teuthology.orchestra.run.smithi019.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:17:17.858 INFO:teuthology.orchestra.run.smithi162.stdout:Building dependency tree... 2024-09-16T14:17:17.859 INFO:teuthology.orchestra.run.smithi162.stdout:Reading state information... 2024-09-16T14:17:17.895 INFO:teuthology.orchestra.run.smithi019.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:17:17.897 DEBUG:teuthology.orchestra.run.smithi019:> dpkg -s linux-image-generic 2024-09-16T14:17:17.914 INFO:teuthology.orchestra.run.smithi019.stdout:Package: linux-image-generic 2024-09-16T14:17:17.914 INFO:teuthology.orchestra.run.smithi019.stdout:Status: install ok installed 2024-09-16T14:17:17.914 INFO:teuthology.orchestra.run.smithi019.stdout:Priority: optional 2024-09-16T14:17:17.914 INFO:teuthology.orchestra.run.smithi019.stdout:Section: kernel 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Installed-Size: 21 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Architecture: amd64 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Source: linux-meta 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.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-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.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-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Recommends: thermald 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:17.915 INFO:teuthology.orchestra.run.smithi019.stdout: available. 2024-09-16T14:17:17.916 DEBUG:teuthology.orchestra.run.smithi019:> mktemp 2024-09-16T14:17:17.962 INFO:teuthology.orchestra.run.smithi019.stdout:/tmp/tmp.H6gG1YbIAe 2024-09-16T14:17:17.962 DEBUG:teuthology.orchestra.run.smithi019:> sudo cp /boot/grub/grub.cfg /tmp/tmp.H6gG1YbIAe 2024-09-16T14:17:17.976 INFO:teuthology.orchestra.run.smithi139.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T14:17:17.976 INFO:teuthology.orchestra.run.smithi139.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:17:17.976 INFO:teuthology.orchestra.run.smithi139.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:17:17.976 INFO:teuthology.orchestra.run.smithi139.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:17:17.977 INFO:teuthology.orchestra.run.smithi139.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:17:17.977 INFO:teuthology.orchestra.run.smithi139.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:17:17.977 INFO:teuthology.orchestra.run.smithi139.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:17:17.977 INFO:teuthology.orchestra.run.smithi139.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:17:18.017 INFO:teuthology.orchestra.run.smithi139.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:17:18.019 DEBUG:teuthology.orchestra.run.smithi139:> dpkg -s linux-image-generic 2024-09-16T14:17:18.033 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod 0666 /tmp/tmp.H6gG1YbIAe 2024-09-16T14:17:18.034 INFO:teuthology.orchestra.run.smithi139.stdout:Package: linux-image-generic 2024-09-16T14:17:18.034 INFO:teuthology.orchestra.run.smithi139.stdout:Status: install ok installed 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Priority: optional 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Section: kernel 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Installed-Size: 21 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Architecture: amd64 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Source: linux-meta 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.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-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.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-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Recommends: thermald 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:18.035 INFO:teuthology.orchestra.run.smithi139.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:18.036 INFO:teuthology.orchestra.run.smithi139.stdout: available. 2024-09-16T14:17:18.036 DEBUG:teuthology.orchestra.run.smithi139:> mktemp 2024-09-16T14:17:18.039 INFO:teuthology.orchestra.run.smithi162.stdout:linux-image-generic is already the newest version (5.15.0.121.121). 2024-09-16T14:17:18.039 INFO:teuthology.orchestra.run.smithi162.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:17:18.040 INFO:teuthology.orchestra.run.smithi162.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:17:18.081 INFO:teuthology.orchestra.run.smithi162.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-16T14:17:18.083 DEBUG:teuthology.orchestra.run.smithi162:> dpkg -s linux-image-generic 2024-09-16T14:17:18.084 INFO:teuthology.orchestra.run.smithi139.stdout:/tmp/tmp.VkhUk1oErJ 2024-09-16T14:17:18.084 DEBUG:teuthology.orchestra.run.smithi139:> sudo cp /boot/grub/grub.cfg /tmp/tmp.VkhUk1oErJ 2024-09-16T14:17:18.098 INFO:teuthology.orchestra.run.smithi162.stdout:Package: linux-image-generic 2024-09-16T14:17:18.098 INFO:teuthology.orchestra.run.smithi162.stdout:Status: install ok installed 2024-09-16T14:17:18.098 INFO:teuthology.orchestra.run.smithi162.stdout:Priority: optional 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Section: kernel 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Installed-Size: 21 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Maintainer: Ubuntu Kernel Team 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Architecture: amd64 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Source: linux-meta 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Version: 5.15.0.121.121 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.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-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.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-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Recommends: thermald 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout:Description: Generic Linux kernel image 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout: This package will always depend on the latest generic kernel image 2024-09-16T14:17:18.099 INFO:teuthology.orchestra.run.smithi162.stdout: available. 2024-09-16T14:17:18.100 DEBUG:teuthology.orchestra.run.smithi162:> mktemp 2024-09-16T14:17:18.141 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod 0666 /tmp/tmp.VkhUk1oErJ 2024-09-16T14:17:18.143 INFO:teuthology.orchestra.run.smithi162.stdout:/tmp/tmp.IXmrSqNimO 2024-09-16T14:17:18.143 DEBUG:teuthology.orchestra.run.smithi162:> sudo cp /boot/grub/grub.cfg /tmp/tmp.IXmrSqNimO 2024-09-16T14:17:18.149 DEBUG:teuthology.orchestra.remote:smithi019:/tmp/tmp.H6gG1YbIAe is 10KB 2024-09-16T14:17:18.162 DEBUG:teuthology.orchestra.run.smithi019:> rm -fr /tmp/tmp.H6gG1YbIAe 2024-09-16T14:17:18.168 DEBUG:teuthology.orchestra.run.smithi019:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.199 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod 0666 /tmp/tmp.IXmrSqNimO 2024-09-16T14:17:18.226 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:17:18.226 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.226 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.258 DEBUG:teuthology.orchestra.remote:smithi139:/tmp/tmp.VkhUk1oErJ is 10KB 2024-09-16T14:17:18.293 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T14:17:18.294 DEBUG:teuthology.orchestra.run.smithi019:> sudo update-grub 2024-09-16T14:17:18.311 DEBUG:teuthology.orchestra.remote:smithi162:/tmp/tmp.IXmrSqNimO is 10KB 2024-09-16T14:17:18.314 DEBUG:teuthology.orchestra.run.smithi139:> rm -fr /tmp/tmp.VkhUk1oErJ 2024-09-16T14:17:18.319 DEBUG:teuthology.orchestra.run.smithi139:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.324 DEBUG:teuthology.orchestra.run.smithi162:> rm -fr /tmp/tmp.IXmrSqNimO 2024-09-16T14:17:18.329 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.372 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:17:18.372 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.372 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.382 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:17:18.382 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.382 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-16T14:17:18.439 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T14:17:18.439 DEBUG:teuthology.orchestra.run.smithi139:> sudo update-grub 2024-09-16T14:17:18.459 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-121-generic 2024-09-16T14:17:18.459 DEBUG:teuthology.orchestra.run.smithi162:> sudo update-grub 2024-09-16T14:17:19.444 INFO:teuthology.orchestra.run.smithi019.stderr:Sourcing file `/etc/default/grub' 2024-09-16T14:17:19.445 INFO:teuthology.orchestra.run.smithi019.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:19.447 INFO:teuthology.orchestra.run.smithi019.stderr:Generating grub configuration file ... 2024-09-16T14:17:19.558 INFO:teuthology.orchestra.run.smithi139.stderr:Sourcing file `/etc/default/grub' 2024-09-16T14:17:19.559 INFO:teuthology.orchestra.run.smithi139.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:19.561 INFO:teuthology.orchestra.run.smithi139.stderr:Generating grub configuration file ... 2024-09-16T14:17:19.595 INFO:teuthology.orchestra.run.smithi162.stderr:Sourcing file `/etc/default/grub' 2024-09-16T14:17:19.597 INFO:teuthology.orchestra.run.smithi162.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-16T14:17:19.599 INFO:teuthology.orchestra.run.smithi162.stderr:Generating grub configuration file ... 2024-09-16T14:17:19.631 INFO:teuthology.orchestra.run.smithi019.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:19.637 INFO:teuthology.orchestra.run.smithi019.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:19.737 INFO:teuthology.orchestra.run.smithi139.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:19.743 INFO:teuthology.orchestra.run.smithi139.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:19.799 INFO:teuthology.orchestra.run.smithi162.stderr:Found linux image: /boot/vmlinuz-5.15.0-121-generic 2024-09-16T14:17:19.805 INFO:teuthology.orchestra.run.smithi162.stderr:Found initrd image: /boot/initrd.img-5.15.0-121-generic 2024-09-16T14:17:19.864 INFO:teuthology.orchestra.run.smithi019.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:19.869 INFO:teuthology.orchestra.run.smithi019.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:19.912 INFO:teuthology.orchestra.run.smithi019.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:19.917 INFO:teuthology.orchestra.run.smithi019.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:19.965 INFO:teuthology.orchestra.run.smithi139.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:19.970 INFO:teuthology.orchestra.run.smithi139.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:20.010 INFO:teuthology.orchestra.run.smithi139.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:20.015 INFO:teuthology.orchestra.run.smithi139.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:20.033 INFO:teuthology.orchestra.run.smithi162.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-16T14:17:20.038 INFO:teuthology.orchestra.run.smithi162.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-16T14:17:20.040 INFO:teuthology.orchestra.run.smithi019.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:20.040 INFO:teuthology.orchestra.run.smithi019.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:20.040 INFO:teuthology.orchestra.run.smithi019.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:20.055 INFO:teuthology.orchestra.run.smithi019.stderr:done 2024-09-16T14:17:20.057 DEBUG:teuthology.orchestra.run.smithi019:> sudo shutdown -r now 2024-09-16T14:17:20.078 INFO:teuthology.orchestra.run.smithi162.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-16T14:17:20.082 INFO:teuthology.orchestra.run.smithi162.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-16T14:17:20.118 INFO:teuthology.orchestra.run.smithi139.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:20.118 INFO:teuthology.orchestra.run.smithi139.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:20.118 INFO:teuthology.orchestra.run.smithi139.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:20.134 INFO:teuthology.orchestra.run.smithi139.stderr:done 2024-09-16T14:17:20.149 DEBUG:teuthology.orchestra.run.smithi139:> sudo shutdown -r now 2024-09-16T14:17:20.229 INFO:teuthology.orchestra.run.smithi162.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-16T14:17:20.230 INFO:teuthology.orchestra.run.smithi162.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-16T14:17:20.230 INFO:teuthology.orchestra.run.smithi162.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-16T14:17:20.244 INFO:teuthology.orchestra.run.smithi162.stderr:done 2024-09-16T14:17:20.246 DEBUG:teuthology.orchestra.run.smithi162:> sudo shutdown -r now 2024-09-16T14:17:50.087 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-16T14:17:50.088 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:17:50.089 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi019.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:17:50.151 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-16T14:17:50.151 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:17:50.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi139.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:17:50.249 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-16T14:17:50.249 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:17:50.250 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:18:24.701 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.162 2024-09-16T14:18:24.702 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.139 2024-09-16T14:18:33.711 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:18:33.712 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:18:33.714 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:18:33.714 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi139.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:18:50.105 DEBUG:teuthology.orchestra.remote:timed out 2024-09-16T14:18:52.093 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.139 2024-09-16T14:18:59.113 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:18:59.114 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi019.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:19:04.097 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:19:04.098 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi139.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:19:04.390 DEBUG:teuthology.orchestra.run.smithi139:> true 2024-09-16T14:19:05.047 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:19:05.047 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-121-generic"... 2024-09-16T14:19:05.047 DEBUG:teuthology.orchestra.run.smithi139:> uname -r 2024-09-16T14:19:05.096 INFO:teuthology.orchestra.run.smithi139.stdout:5.15.0-121-generic 2024-09-16T14:19:05.096 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T14:19:05.096 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T14:19:05.097 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T14:19:06.097 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-16T14:19:06.098 DEBUG:teuthology.orchestra.run.smithi139:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T14:19:06.173 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.19 2024-09-16T14:19:06.178 INFO:teuthology.orchestra.run.smithi139.stdout:ttyS1 2024-09-16T14:19:06.209 DEBUG:teuthology.parallel:result is None 2024-09-16T14:19:18.174 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:19:18.175 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi019.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:19:18.428 DEBUG:teuthology.orchestra.run.smithi019:> true 2024-09-16T14:19:18.966 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:19:18.966 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-121-generic"... 2024-09-16T14:19:18.966 DEBUG:teuthology.orchestra.run.smithi019:> uname -r 2024-09-16T14:19:19.014 INFO:teuthology.orchestra.run.smithi019.stdout:5.15.0-121-generic 2024-09-16T14:19:19.014 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T14:19:19.015 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T14:19:19.015 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T14:19:20.016 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-16T14:19:20.016 DEBUG:teuthology.orchestra.run.smithi019:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T14:19:20.101 INFO:teuthology.orchestra.run.smithi019.stdout:ttyS1 2024-09-16T14:19:20.136 DEBUG:teuthology.parallel:result is None 2024-09-16T14:19:33.715 DEBUG:teuthology.orchestra.remote:timed out 2024-09-16T14:19:45.716 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:19:45.717 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:19:45.996 DEBUG:teuthology.orchestra.run.smithi162:> true 2024-09-16T14:19:46.485 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:19:46.485 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.15.0-121-generic"... 2024-09-16T14:19:46.486 DEBUG:teuthology.orchestra.run.smithi162:> uname -r 2024-09-16T14:19:46.531 INFO:teuthology.orchestra.run.smithi162.stdout:5.15.0-121-generic 2024-09-16T14:19:46.531 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-121-generic vs 5.15.0-121-generic 2024-09-16T14:19:46.531 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-16T14:19:46.531 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-16T14:19:47.532 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-16T14:19:47.533 DEBUG:teuthology.orchestra.run.smithi162:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-16T14:19:47.874 INFO:teuthology.orchestra.run.smithi162.stdout:ttyS1 2024-09-16T14:19:47.901 DEBUG:teuthology.parallel:result is None 2024-09-16T14:19:47.901 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-16T14:19:47.911 INFO:teuthology.task.internal:Creating test directory... 2024-09-16T14:19:47.911 DEBUG:teuthology.orchestra.run.smithi019:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T14:19:47.913 DEBUG:teuthology.orchestra.run.smithi139:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T14:19:47.916 DEBUG:teuthology.orchestra.run.smithi162:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-16T14:19:47.921 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-16T14:19:47.948 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-16T14:19:48.077 INFO:teuthology.task.internal:Creating archive directory... 2024-09-16T14:19:48.077 DEBUG:teuthology.orchestra.run.smithi019:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T14:19:48.080 DEBUG:teuthology.orchestra.run.smithi139:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T14:19:48.082 DEBUG:teuthology.orchestra.run.smithi162:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-16T14:19:48.110 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-16T14:19:48.118 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-16T14:19:48.118 DEBUG:teuthology.orchestra.run.smithi019:> 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-16T14:19:48.139 DEBUG:teuthology.orchestra.run.smithi139:> 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-16T14:19:48.142 DEBUG:teuthology.orchestra.run.smithi162:> 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-16T14:19:48.157 INFO:teuthology.orchestra.run.smithi019.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.158 INFO:teuthology.orchestra.run.smithi139.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.166 INFO:teuthology.orchestra.run.smithi139.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.166 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.167 INFO:teuthology.orchestra.run.smithi019.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.176 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-16T14:19:48.178 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-16T14:19:48.185 INFO:teuthology.task.internal:Configuring sudo... 2024-09-16T14:19:48.185 DEBUG:teuthology.orchestra.run.smithi019:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T14:19:48.211 DEBUG:teuthology.orchestra.run.smithi139:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T14:19:48.213 DEBUG:teuthology.orchestra.run.smithi162:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-16T14:19:48.231 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-16T14:19:48.240 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-16T14:19:48.240 DEBUG:teuthology.orchestra.run.smithi019:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T14:19:48.271 DEBUG:teuthology.orchestra.run.smithi139:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T14:19:48.275 DEBUG:teuthology.orchestra.run.smithi162:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-16T14:19:48.280 DEBUG:teuthology.orchestra.run.smithi019:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T14:19:48.322 DEBUG:teuthology.orchestra.run.smithi019:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T14:19:48.370 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:19:48.370 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T14:19:48.433 DEBUG:teuthology.orchestra.run.smithi139:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T14:19:48.438 DEBUG:teuthology.orchestra.run.smithi139:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T14:19:48.487 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:19:48.487 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T14:19:48.560 DEBUG:teuthology.orchestra.run.smithi162:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-16T14:19:48.566 DEBUG:teuthology.orchestra.run.smithi162:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-16T14:19:48.611 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:19:48.611 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-16T14:19:48.680 DEBUG:teuthology.orchestra.run.smithi019:> sudo service rsyslog restart 2024-09-16T14:19:48.682 DEBUG:teuthology.orchestra.run.smithi139:> sudo service rsyslog restart 2024-09-16T14:19:48.684 DEBUG:teuthology.orchestra.run.smithi162:> sudo service rsyslog restart 2024-09-16T14:19:48.751 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-16T14:19:48.758 INFO:teuthology.task.internal:Starting timer... 2024-09-16T14:19:48.759 INFO:teuthology.run_tasks:Running task pcp... 2024-09-16T14:19:48.768 INFO:teuthology.run_tasks:Running task selinux... 2024-09-16T14:19:48.776 DEBUG:teuthology.task.selinux:Excluding smithi019: OS 'ubuntu' does not support SELinux 2024-09-16T14:19:48.776 DEBUG:teuthology.task.selinux:Excluding smithi139: OS 'ubuntu' does not support SELinux 2024-09-16T14:19:48.776 DEBUG:teuthology.task.selinux:Excluding smithi162: OS 'ubuntu' does not support SELinux 2024-09-16T14:19:48.776 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-16T14:19:48.776 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-16T14:19:48.776 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-16T14:19:48.776 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-16T14:19:48.785 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-16T14:19:48.788 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-16T14:19:48.930 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-16T14:19:48.942 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-16T14:19:48.943 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi019.front.sepia.ceph.com,smithi139.front.sepia.ceph.com,smithi162.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-16T14:27:25.448 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi019.front.sepia.ceph.com'), Remote(name='ubuntu@smithi139.front.sepia.ceph.com'), Remote(name='ubuntu@smithi162.front.sepia.ceph.com')] 2024-09-16T14:27:25.450 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:27:25.451 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi019.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:27:25.538 DEBUG:teuthology.orchestra.run.smithi019:> true 2024-09-16T14:27:25.614 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi019.front.sepia.ceph.com' 2024-09-16T14:27:25.614 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:27:25.615 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi139.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:27:25.694 DEBUG:teuthology.orchestra.run.smithi139:> true 2024-09-16T14:27:25.773 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi139.front.sepia.ceph.com' 2024-09-16T14:27:25.773 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:27:25.774 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi162.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-16T14:27:25.851 DEBUG:teuthology.orchestra.run.smithi162:> true 2024-09-16T14:27:25.929 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi162.front.sepia.ceph.com' 2024-09-16T14:27:25.930 INFO:teuthology.run_tasks:Running task clock... 2024-09-16T14:27:25.943 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-16T14:27:25.943 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T14:27:25.944 DEBUG:teuthology.orchestra.run.smithi019:> 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-16T14:27:25.946 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T14:27:25.946 DEBUG:teuthology.orchestra.run.smithi139:> 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-16T14:27:25.949 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-16T14:27:25.949 DEBUG:teuthology.orchestra.run.smithi162:> 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-16T14:27:25.974 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Command line: ntpd -gq 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: ---------------------------------------------------- 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: corporation. Support and training for ntp-4 are 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: available at https://www.nwtime.org/support 2024-09-16T14:27:25.975 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: ---------------------------------------------------- 2024-09-16T14:27:25.976 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: proto: precision = 0.069 usec (-24) 2024-09-16T14:27:25.976 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: basedate set to 2022-02-04 2024-09-16T14:27:25.977 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: gps base set to 2022-02-06 (week 2196) 2024-09-16T14:27:25.977 INFO:teuthology.orchestra.run.smithi019.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:25.977 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Command line: ntpd -gq 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: ---------------------------------------------------- 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: corporation. Support and training for ntp-4 are 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: available at https://www.nwtime.org/support 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: ---------------------------------------------------- 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: proto: precision = 0.047 usec (-24) 2024-09-16T14:27:25.978 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: basedate set to 2022-02-04 2024-09-16T14:27:25.979 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: gps base set to 2022-02-06 (week 2196) 2024-09-16T14:27:25.979 INFO:teuthology.orchestra.run.smithi139.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:25.979 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:25.979 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:25.979 INFO:teuthology.orchestra.run.smithi019.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:25.980 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:25.980 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:25.980 INFO:teuthology.orchestra.run.smithi139.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:25.981 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T14:27:25.981 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T14:27:25.982 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T14:27:25.982 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen normally on 3 ens1f0 172.21.15.19:123 2024-09-16T14:27:25.982 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen normally on 4 lo [::1]:123 2024-09-16T14:27:25.982 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:161e%3]:123 2024-09-16T14:27:25.982 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:25 ntpd[18366]: Listening on routing socket on fd #22 for interface updates 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen normally on 3 enp3s0f1 172.21.15.139:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen normally on 4 lo [::1]:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f59%5]:123 2024-09-16T14:27:25.983 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:25 ntpd[18511]: Listening on routing socket on fd #22 for interface updates 2024-09-16T14:27:25.998 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Command line: ntpd -gq 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: ---------------------------------------------------- 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: ntp-4 is maintained by Network Time Foundation, 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: corporation. Support and training for ntp-4 are 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: available at https://www.nwtime.org/support 2024-09-16T14:27:25.999 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: ---------------------------------------------------- 2024-09-16T14:27:26.000 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: proto: precision = 0.061 usec (-24) 2024-09-16T14:27:26.000 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: basedate set to 2022-02-04 2024-09-16T14:27:26.000 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: gps base set to 2022-02-06 (week 2196) 2024-09-16T14:27:26.000 INFO:teuthology.orchestra.run.smithi162.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:26.000 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-16T14:27:26.001 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:26.001 INFO:teuthology.orchestra.run.smithi162.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen and drop on 0 v6wildcard [::]:123 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen normally on 2 lo 127.0.0.1:123 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen normally on 3 enp3s0f1 172.21.15.162:123 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen normally on 4 lo [::1]:123 2024-09-16T14:27:26.002 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f41%5]:123 2024-09-16T14:27:26.003 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:25 ntpd[18509]: Listening on routing socket on fd #22 for interface updates 2024-09-16T14:27:26.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:26 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:26.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:26 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:28.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:27 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:28.976 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:28.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:28.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:28.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:28 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:29.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:29 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:29.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:29 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:29.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:29 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:29 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:30 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:30.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:30 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:30.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:30.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:30.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:31.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:30 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:31.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:31.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:31.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:31.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:31.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:31.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:31 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.001 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.002 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.002 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.002 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.002 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.002 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:31 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:32 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.977 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.978 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:32.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:32 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:32.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:32.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:32.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:33.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:32 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:33.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:33.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:33.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:33 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:33.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:33.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:33.999 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stdout:16 Sep 14:27:33 ntpd[18509]: ntpd: time slew -0.000516 s 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stdout:ntpd: time slew -0.000516s 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T14:27:34.000 INFO:teuthology.orchestra.run.smithi162.stderr:16 Sep 14:27:33 ntpd[18509]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T14:27:34.057 INFO:teuthology.orchestra.run.smithi162.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:27:34.057 INFO:teuthology.orchestra.run.smithi162.stdout:============================================================================== 2024-09-16T14:27:34.058 INFO:teuthology.orchestra.run.smithi162.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:34.058 INFO:teuthology.orchestra.run.smithi162.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:34.058 INFO:teuthology.orchestra.run.smithi162.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:34.058 INFO:teuthology.orchestra.run.smithi162.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:34.975 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:34.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:34 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:34.979 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stdout:16 Sep 14:27:34 ntpd[18511]: ntpd: time slew -0.000886 s 2024-09-16T14:27:34.980 INFO:teuthology.orchestra.run.smithi139.stdout:ntpd: time slew -0.000886s 2024-09-16T14:27:34.981 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T14:27:34.981 INFO:teuthology.orchestra.run.smithi139.stderr:16 Sep 14:27:34 ntpd[18511]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout:============================================================================== 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:35.034 INFO:teuthology.orchestra.run.smithi139.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: can't open /var/log/ntpstats/rawstats.20240916: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-16T14:27:35.976 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: can't open /var/log/ntpstats/peerstats.20240916: Permission denied 2024-09-16T14:27:35.977 INFO:teuthology.orchestra.run.smithi019.stdout:16 Sep 14:27:35 ntpd[18366]: ntpd: time slew -0.000498 s 2024-09-16T14:27:35.977 INFO:teuthology.orchestra.run.smithi019.stdout:ntpd: time slew -0.000498s 2024-09-16T14:27:35.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-16T14:27:35.977 INFO:teuthology.orchestra.run.smithi019.stderr:16 Sep 14:27:35 ntpd[18366]: can't open /var/log/ntpstats/loopstats.20240916: Permission denied 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout:============================================================================== 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:36.027 INFO:teuthology.orchestra.run.smithi019.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-16T14:27:36.028 INFO:teuthology.run_tasks:Running task install... 2024-09-16T14:27:36.037 DEBUG:teuthology.task.install:project ceph 2024-09-16T14:27:36.037 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8'}} 2024-09-16T14:27:36.038 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8'} 2024-09-16T14:27:36.038 INFO:teuthology.task.install:Using flavor: default 2024-09-16T14:27:36.043 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-16T14:27:36.043 INFO:teuthology.task.install:extra packages: [] 2024-09-16T14:27:36.043 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-key list | grep Ceph 2024-09-16T14:27:36.044 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-key list | grep Ceph 2024-09-16T14:27:36.044 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-key list | grep Ceph 2024-09-16T14:27:36.103 INFO:teuthology.orchestra.run.smithi139.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T14:27:36.107 INFO:teuthology.orchestra.run.smithi162.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T14:27:36.128 INFO:teuthology.orchestra.run.smithi019.stderr:Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)). 2024-09-16T14:27:36.131 INFO:teuthology.orchestra.run.smithi139.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T14:27:36.131 INFO:teuthology.orchestra.run.smithi139.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T14:27:36.132 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-16T14:27:36.132 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:27:36.137 INFO:teuthology.orchestra.run.smithi162.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T14:27:36.137 INFO:teuthology.orchestra.run.smithi162.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T14:27:36.138 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-16T14:27:36.138 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:27:36.173 INFO:teuthology.orchestra.run.smithi019.stdout:uid [ unknown] Ceph automated package build (Ceph automated package build) 2024-09-16T14:27:36.173 INFO:teuthology.orchestra.run.smithi019.stdout:uid [ unknown] Ceph.com (release key) 2024-09-16T14:27:36.174 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-16T14:27:36.174 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:27:36.281 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default/ 2024-09-16T14:27:36.282 INFO:teuthology.task.install.deb:Package version is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:36.287 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default/ 2024-09-16T14:27:36.287 INFO:teuthology.task.install.deb:Package version is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:36.320 INFO:teuthology.task.install.deb:Pulling from https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default/ 2024-09-16T14:27:36.320 INFO:teuthology.task.install.deb:Package version is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:36.393 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:27:36.394 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T14:27:36.398 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:27:36.399 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T14:27:36.408 DEBUG:teuthology.orchestra.run.smithi139:> sudo apt-get update 2024-09-16T14:27:36.412 DEBUG:teuthology.orchestra.run.smithi162:> sudo apt-get update 2024-09-16T14:27:36.432 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:27:36.432 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/etc/apt/sources.list.d/ceph.list 2024-09-16T14:27:36.447 DEBUG:teuthology.orchestra.run.smithi019:> sudo apt-get update 2024-09-16T14:27:36.581 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:27:36.581 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:27:36.590 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:27:36.607 INFO:teuthology.orchestra.run.smithi162.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:27:36.631 INFO:teuthology.orchestra.run.smithi162.stdout:Ign:5 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T14:27:36.635 INFO:teuthology.orchestra.run.smithi139.stdout:Ign:1 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T14:27:36.652 INFO:teuthology.orchestra.run.smithi162.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T14:27:36.657 INFO:teuthology.orchestra.run.smithi139.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T14:27:36.674 INFO:teuthology.orchestra.run.smithi019.stdout:Ign:1 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy InRelease 2024-09-16T14:27:36.674 INFO:teuthology.orchestra.run.smithi162.stdout:Ign:7 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T14:27:36.680 INFO:teuthology.orchestra.run.smithi139.stdout:Ign:3 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T14:27:36.695 INFO:teuthology.orchestra.run.smithi162.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-09-16T14:27:36.695 INFO:teuthology.orchestra.run.smithi019.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release [7,662 B] 2024-09-16T14:27:36.711 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:27:36.711 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:27:36.711 INFO:teuthology.orchestra.run.smithi139.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-09-16T14:27:36.718 INFO:teuthology.orchestra.run.smithi019.stdout:Ign:3 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy Release.gpg 2024-09-16T14:27:36.722 INFO:teuthology.orchestra.run.smithi162.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,411 B] 2024-09-16T14:27:36.739 INFO:teuthology.orchestra.run.smithi139.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,411 B] 2024-09-16T14:27:36.748 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-16T14:27:36.749 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:5 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-16T14:27:36.749 INFO:teuthology.orchestra.run.smithi019.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 Packages [17.8 kB] 2024-09-16T14:27:36.777 INFO:teuthology.orchestra.run.smithi019.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main i386 Packages [3,411 B] 2024-09-16T14:27:36.782 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:27:36.821 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-16T14:27:36.864 INFO:teuthology.orchestra.run.smithi139.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:27:36.902 INFO:teuthology.orchestra.run.smithi019.stdout:Hit:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-16T14:27:36.933 INFO:teuthology.orchestra.run.smithi162.stdout:Fetched 28.8 kB in 0s (85.0 kB/s) 2024-09-16T14:27:37.094 INFO:teuthology.orchestra.run.smithi139.stdout:Fetched 28.8 kB in 0s (57.7 kB/s) 2024-09-16T14:27:37.144 INFO:teuthology.orchestra.run.smithi019.stdout:Fetched 28.8 kB in 1s (56.2 kB/s) 2024-09-16T14:27:37.948 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:27:37.965 DEBUG:teuthology.orchestra.run.smithi162:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-845-ge4e227b3-1jammy cephadm=18.2.4-845-ge4e227b3-1jammy ceph-mds=18.2.4-845-ge4e227b3-1jammy ceph-mgr=18.2.4-845-ge4e227b3-1jammy ceph-common=18.2.4-845-ge4e227b3-1jammy ceph-fuse=18.2.4-845-ge4e227b3-1jammy ceph-test=18.2.4-845-ge4e227b3-1jammy ceph-volume=18.2.4-845-ge4e227b3-1jammy radosgw=18.2.4-845-ge4e227b3-1jammy python3-rados=18.2.4-845-ge4e227b3-1jammy python3-rgw=18.2.4-845-ge4e227b3-1jammy python3-cephfs=18.2.4-845-ge4e227b3-1jammy python3-rbd=18.2.4-845-ge4e227b3-1jammy libcephfs2=18.2.4-845-ge4e227b3-1jammy libcephfs-dev=18.2.4-845-ge4e227b3-1jammy librados2=18.2.4-845-ge4e227b3-1jammy librbd1=18.2.4-845-ge4e227b3-1jammy rbd-fuse=18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:38.019 INFO:teuthology.orchestra.run.smithi162.stdout:Reading package lists... 2024-09-16T14:27:38.122 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:27:38.138 DEBUG:teuthology.orchestra.run.smithi139:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-845-ge4e227b3-1jammy cephadm=18.2.4-845-ge4e227b3-1jammy ceph-mds=18.2.4-845-ge4e227b3-1jammy ceph-mgr=18.2.4-845-ge4e227b3-1jammy ceph-common=18.2.4-845-ge4e227b3-1jammy ceph-fuse=18.2.4-845-ge4e227b3-1jammy ceph-test=18.2.4-845-ge4e227b3-1jammy ceph-volume=18.2.4-845-ge4e227b3-1jammy radosgw=18.2.4-845-ge4e227b3-1jammy python3-rados=18.2.4-845-ge4e227b3-1jammy python3-rgw=18.2.4-845-ge4e227b3-1jammy python3-cephfs=18.2.4-845-ge4e227b3-1jammy python3-rbd=18.2.4-845-ge4e227b3-1jammy libcephfs2=18.2.4-845-ge4e227b3-1jammy libcephfs-dev=18.2.4-845-ge4e227b3-1jammy librados2=18.2.4-845-ge4e227b3-1jammy librbd1=18.2.4-845-ge4e227b3-1jammy rbd-fuse=18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:38.156 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:27:38.172 DEBUG:teuthology.orchestra.run.smithi019:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install ceph=18.2.4-845-ge4e227b3-1jammy cephadm=18.2.4-845-ge4e227b3-1jammy ceph-mds=18.2.4-845-ge4e227b3-1jammy ceph-mgr=18.2.4-845-ge4e227b3-1jammy ceph-common=18.2.4-845-ge4e227b3-1jammy ceph-fuse=18.2.4-845-ge4e227b3-1jammy ceph-test=18.2.4-845-ge4e227b3-1jammy ceph-volume=18.2.4-845-ge4e227b3-1jammy radosgw=18.2.4-845-ge4e227b3-1jammy python3-rados=18.2.4-845-ge4e227b3-1jammy python3-rgw=18.2.4-845-ge4e227b3-1jammy python3-cephfs=18.2.4-845-ge4e227b3-1jammy python3-rbd=18.2.4-845-ge4e227b3-1jammy libcephfs2=18.2.4-845-ge4e227b3-1jammy libcephfs-dev=18.2.4-845-ge4e227b3-1jammy librados2=18.2.4-845-ge4e227b3-1jammy librbd1=18.2.4-845-ge4e227b3-1jammy rbd-fuse=18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:27:38.204 INFO:teuthology.orchestra.run.smithi139.stdout:Reading package lists... 2024-09-16T14:27:38.206 INFO:teuthology.orchestra.run.smithi162.stdout:Building dependency tree... 2024-09-16T14:27:38.207 INFO:teuthology.orchestra.run.smithi162.stdout:Reading state information... 2024-09-16T14:27:38.228 INFO:teuthology.orchestra.run.smithi019.stdout:Reading package lists... 2024-09-16T14:27:38.391 INFO:teuthology.orchestra.run.smithi162.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:27:38.391 INFO:teuthology.orchestra.run.smithi162.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:27:38.391 INFO:teuthology.orchestra.run.smithi162.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:27:38.391 INFO:teuthology.orchestra.run.smithi162.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:27:38.391 INFO:teuthology.orchestra.run.smithi162.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:27:38.392 INFO:teuthology.orchestra.run.smithi162.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:27:38.392 INFO:teuthology.orchestra.run.smithi162.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:27:38.392 INFO:teuthology.orchestra.run.smithi162.stdout:The following additional packages will be installed: 2024-09-16T14:27:38.392 INFO:teuthology.orchestra.run.smithi162.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T14:27:38.393 INFO:teuthology.orchestra.run.smithi162.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T14:27:38.393 INFO:teuthology.orchestra.run.smithi162.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-16T14:27:38.393 INFO:teuthology.orchestra.run.smithi162.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T14:27:38.393 INFO:teuthology.orchestra.run.smithi162.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T14:27:38.394 INFO:teuthology.orchestra.run.smithi162.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout:Suggested packages: 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-16T14:27:38.395 INFO:teuthology.orchestra.run.smithi162.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-16T14:27:38.396 INFO:teuthology.orchestra.run.smithi162.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-16T14:27:38.396 INFO:teuthology.orchestra.run.smithi162.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-16T14:27:38.396 INFO:teuthology.orchestra.run.smithi162.stdout: python3-watchdog 2024-09-16T14:27:38.396 INFO:teuthology.orchestra.run.smithi162.stdout:Recommended packages: 2024-09-16T14:27:38.396 INFO:teuthology.orchestra.run.smithi162.stdout: btrfs-tools 2024-09-16T14:27:38.413 INFO:teuthology.orchestra.run.smithi139.stdout:Building dependency tree... 2024-09-16T14:27:38.413 INFO:teuthology.orchestra.run.smithi139.stdout:Reading state information... 2024-09-16T14:27:38.419 INFO:teuthology.orchestra.run.smithi019.stdout:Building dependency tree... 2024-09-16T14:27:38.421 INFO:teuthology.orchestra.run.smithi019.stdout:Reading state information... 2024-09-16T14:27:38.497 INFO:teuthology.orchestra.run.smithi162.stdout:The following NEW packages will be installed: 2024-09-16T14:27:38.497 INFO:teuthology.orchestra.run.smithi162.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T14:27:38.497 INFO:teuthology.orchestra.run.smithi162.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T14:27:38.498 INFO:teuthology.orchestra.run.smithi162.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-16T14:27:38.499 INFO:teuthology.orchestra.run.smithi162.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-16T14:27:38.500 INFO:teuthology.orchestra.run.smithi162.stdout: socat xmlstarlet 2024-09-16T14:27:38.613 INFO:teuthology.orchestra.run.smithi019.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:27:38.613 INFO:teuthology.orchestra.run.smithi019.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:27:38.613 INFO:teuthology.orchestra.run.smithi019.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:27:38.613 INFO:teuthology.orchestra.run.smithi019.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:27:38.613 INFO:teuthology.orchestra.run.smithi019.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:27:38.614 INFO:teuthology.orchestra.run.smithi019.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:27:38.614 INFO:teuthology.orchestra.run.smithi019.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:27:38.614 INFO:teuthology.orchestra.run.smithi019.stdout:The following additional packages will be installed: 2024-09-16T14:27:38.614 INFO:teuthology.orchestra.run.smithi019.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T14:27:38.615 INFO:teuthology.orchestra.run.smithi019.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T14:27:38.615 INFO:teuthology.orchestra.run.smithi019.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-16T14:27:38.615 INFO:teuthology.orchestra.run.smithi019.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T14:27:38.615 INFO:teuthology.orchestra.run.smithi019.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-16T14:27:38.615 INFO:teuthology.orchestra.run.smithi019.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.616 INFO:teuthology.orchestra.run.smithi019.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout:Suggested packages: 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-16T14:27:38.617 INFO:teuthology.orchestra.run.smithi019.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-16T14:27:38.618 INFO:teuthology.orchestra.run.smithi019.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-16T14:27:38.618 INFO:teuthology.orchestra.run.smithi019.stdout: python3-watchdog 2024-09-16T14:27:38.618 INFO:teuthology.orchestra.run.smithi019.stdout:Recommended packages: 2024-09-16T14:27:38.618 INFO:teuthology.orchestra.run.smithi019.stdout: btrfs-tools 2024-09-16T14:27:38.622 INFO:teuthology.orchestra.run.smithi139.stdout:The following packages were automatically installed and are no longer required: 2024-09-16T14:27:38.622 INFO:teuthology.orchestra.run.smithi139.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-16T14:27:38.622 INFO:teuthology.orchestra.run.smithi139.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-16T14:27:38.623 INFO:teuthology.orchestra.run.smithi139.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-16T14:27:38.623 INFO:teuthology.orchestra.run.smithi139.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-16T14:27:38.623 INFO:teuthology.orchestra.run.smithi139.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-16T14:27:38.623 INFO:teuthology.orchestra.run.smithi139.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-16T14:27:38.624 INFO:teuthology.orchestra.run.smithi139.stdout:The following additional packages will be installed: 2024-09-16T14:27:38.624 INFO:teuthology.orchestra.run.smithi139.stdout: ceph-base ceph-mgr-cephadm ceph-mgr-dashboard ceph-mgr-diskprediction-local 2024-09-16T14:27:38.624 INFO:teuthology.orchestra.run.smithi139.stdout: ceph-mgr-k8sevents ceph-mgr-modules-core ceph-mon ceph-osd jq 2024-09-16T14:27:38.624 INFO:teuthology.orchestra.run.smithi139.stdout: libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 liboath0 libonig5 2024-09-16T14:27:38.625 INFO:teuthology.orchestra.run.smithi139.stdout: libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 libradosstriper1 2024-09-16T14:27:38.625 INFO:teuthology.orchestra.run.smithi139.stdout: librdkafka1 librgw2 libsqlite3-mod-ceph libthrift-0.16.0 nvme-cli 2024-09-16T14:27:38.625 INFO:teuthology.orchestra.run.smithi139.stdout: python-asyncssh-doc python-babel-localedata python-pastedeploy-tpl 2024-09-16T14:27:38.625 INFO:teuthology.orchestra.run.smithi139.stdout: python3-asyncssh python3-babel python3-bcrypt python3-cachetools 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-ceph-argparse python3-ceph-common python3-certifi python3-cheroot 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-cherrypy3 python3-google-auth python3-idna python3-iniconfig 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-jaraco.classes python3-jaraco.collections python3-jaraco.functools 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-jaraco.text python3-jinja2 python3-joblib python3-kubernetes 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-logutils python3-mako python3-markupsafe python3-natsort 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-openssl python3-paste python3-pastedeploy python3-pastescript 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-pecan python3-pluggy python3-portend python3-prettytable 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-psutil python3-py python3-pyasn1 python3-pyasn1-modules 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-pygments python3-pyinotify python3-pytest python3-repoze.lru 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-requests python3-requests-oauthlib python3-routes python3-rsa 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.626 INFO:teuthology.orchestra.run.smithi139.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n socat xmlstarlet 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout:Suggested packages: 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python3-influxdb python-jinja2-doc python3-beaker python-mako-doc 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python-natsort-doc python-openssl-doc python3-openssl-dbg httpd-wsgi 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: libapache2-mod-python libapache2-mod-scgi libjs-mochikit python-pecan-doc 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python-psutil-doc subversion python-pygments-doc python-pyinotify-doc 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python3-socks python-requests-doc python3-dap python-sklearn-doc ipython3 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python-waitress-doc python-webob-doc python-webtest-doc python-werkzeug-doc 2024-09-16T14:27:38.627 INFO:teuthology.orchestra.run.smithi139.stdout: python3-watchdog 2024-09-16T14:27:38.628 INFO:teuthology.orchestra.run.smithi139.stdout:Recommended packages: 2024-09-16T14:27:38.628 INFO:teuthology.orchestra.run.smithi139.stdout: btrfs-tools 2024-09-16T14:27:38.645 INFO:teuthology.orchestra.run.smithi162.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T14:27:38.645 INFO:teuthology.orchestra.run.smithi162.stdout:Need to get 163 MB of archives. 2024-09-16T14:27:38.645 INFO:teuthology.orchestra.run.smithi162.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-16T14:27:38.645 INFO:teuthology.orchestra.run.smithi162.stdout:Get:1 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-845-ge4e227b3-1jammy [3,451 kB] 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout:The following NEW packages will be installed: 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-16T14:27:38.722 INFO:teuthology.orchestra.run.smithi019.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-16T14:27:38.723 INFO:teuthology.orchestra.run.smithi019.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-16T14:27:38.724 INFO:teuthology.orchestra.run.smithi019.stdout: socat xmlstarlet 2024-09-16T14:27:38.729 INFO:teuthology.orchestra.run.smithi139.stdout:The following NEW packages will be installed: 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: ceph ceph-base ceph-common ceph-fuse ceph-mds ceph-mgr ceph-mgr-cephadm 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: ceph-mgr-dashboard ceph-mgr-diskprediction-local ceph-mgr-k8sevents 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: ceph-mgr-modules-core ceph-mon ceph-osd ceph-test ceph-volume cephadm jq 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: libcephfs-dev libcephfs2 libdouble-conversion3 libfmt8 libjq1 liblttng-ust1 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: liboath0 libonig5 libpcre2-16-0 libqt5core5a libqt5dbus5 libqt5network5 2024-09-16T14:27:38.730 INFO:teuthology.orchestra.run.smithi139.stdout: librados2 libradosstriper1 librbd1 librdkafka1 librgw2 libsqlite3-mod-ceph 2024-09-16T14:27:38.731 INFO:teuthology.orchestra.run.smithi139.stdout: libthrift-0.16.0 nvme-cli python-asyncssh-doc python-babel-localedata 2024-09-16T14:27:38.731 INFO:teuthology.orchestra.run.smithi139.stdout: python-pastedeploy-tpl python3-asyncssh python3-babel python3-bcrypt 2024-09-16T14:27:38.731 INFO:teuthology.orchestra.run.smithi139.stdout: python3-cachetools python3-ceph-argparse python3-ceph-common python3-cephfs 2024-09-16T14:27:38.731 INFO:teuthology.orchestra.run.smithi139.stdout: python3-certifi python3-cheroot python3-cherrypy3 python3-google-auth 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-idna python3-iniconfig python3-jaraco.classes 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-jaraco.collections python3-jaraco.functools python3-jaraco.text 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-jinja2 python3-joblib python3-kubernetes python3-logutils 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-mako python3-markupsafe python3-natsort python3-openssl 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-paste python3-pastedeploy python3-pastescript python3-pecan 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-pluggy python3-portend python3-prettytable python3-psutil python3-py 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-pyasn1 python3-pyasn1-modules python3-pygments python3-pyinotify 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-pytest python3-rados python3-rbd python3-repoze.lru python3-requests 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-requests-oauthlib python3-rgw python3-routes python3-rsa 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-simplegeneric python3-simplejson python3-singledispatch 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-sklearn python3-sklearn-lib python3-tempita python3-tempora 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-threadpoolctl python3-toml python3-urllib3 python3-waitress 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-wcwidth python3-webob python3-websocket python3-webtest 2024-09-16T14:27:38.732 INFO:teuthology.orchestra.run.smithi139.stdout: python3-werkzeug python3-zc.lockfile qttranslations5-l10n radosgw rbd-fuse 2024-09-16T14:27:38.733 INFO:teuthology.orchestra.run.smithi139.stdout: socat xmlstarlet 2024-09-16T14:27:38.792 INFO:teuthology.orchestra.run.smithi139.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T14:27:38.793 INFO:teuthology.orchestra.run.smithi139.stdout:Need to get 163 MB of archives. 2024-09-16T14:27:38.793 INFO:teuthology.orchestra.run.smithi139.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-16T14:27:38.793 INFO:teuthology.orchestra.run.smithi139.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-16T14:27:38.835 INFO:teuthology.orchestra.run.smithi162.stdout:Get:2 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-845-ge4e227b3-1jammy [3,108 kB] 2024-09-16T14:27:38.854 INFO:teuthology.orchestra.run.smithi139.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T14:27:38.876 INFO:teuthology.orchestra.run.smithi139.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-845-ge4e227b3-1jammy [3,451 kB] 2024-09-16T14:27:38.881 INFO:teuthology.orchestra.run.smithi162.stdout:Get:3 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-845-ge4e227b3-1jammy [683 kB] 2024-09-16T14:27:38.890 INFO:teuthology.orchestra.run.smithi162.stdout:Get:4 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-845-ge4e227b3-1jammy [357 kB] 2024-09-16T14:27:38.893 INFO:teuthology.orchestra.run.smithi139.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T14:27:38.896 INFO:teuthology.orchestra.run.smithi019.stdout:0 upgraded, 109 newly installed, 0 to remove and 331 not upgraded. 2024-09-16T14:27:38.896 INFO:teuthology.orchestra.run.smithi019.stdout:Need to get 163 MB of archives. 2024-09-16T14:27:38.896 INFO:teuthology.orchestra.run.smithi019.stdout:After this operation, 746 MB of additional disk space will be used. 2024-09-16T14:27:38.897 INFO:teuthology.orchestra.run.smithi019.stdout:Get:1 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librados2 amd64 18.2.4-845-ge4e227b3-1jammy [3,451 kB] 2024-09-16T14:27:38.897 INFO:teuthology.orchestra.run.smithi162.stdout:Get:5 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-845-ge4e227b3-1jammy [32.8 kB] 2024-09-16T14:27:38.897 INFO:teuthology.orchestra.run.smithi139.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T14:27:38.897 INFO:teuthology.orchestra.run.smithi162.stdout:Get:6 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-845-ge4e227b3-1jammy [180 kB] 2024-09-16T14:27:38.900 INFO:teuthology.orchestra.run.smithi162.stdout:Get:7 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-845-ge4e227b3-1jammy [63.7 kB] 2024-09-16T14:27:38.901 INFO:teuthology.orchestra.run.smithi162.stdout:Get:8 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-845-ge4e227b3-1jammy [333 kB] 2024-09-16T14:27:38.905 INFO:teuthology.orchestra.run.smithi162.stdout:Get:9 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-845-ge4e227b3-1jammy [5,934 kB] 2024-09-16T14:27:38.911 INFO:teuthology.orchestra.run.smithi019.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-16T14:27:38.912 INFO:teuthology.orchestra.run.smithi139.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-16T14:27:38.978 INFO:teuthology.orchestra.run.smithi139.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T14:27:38.983 INFO:teuthology.orchestra.run.smithi139.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T14:27:38.998 INFO:teuthology.orchestra.run.smithi139.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T14:27:39.003 INFO:teuthology.orchestra.run.smithi139.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T14:27:39.004 INFO:teuthology.orchestra.run.smithi139.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T14:27:39.005 INFO:teuthology.orchestra.run.smithi139.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T14:27:39.014 INFO:teuthology.orchestra.run.smithi139.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T14:27:39.015 INFO:teuthology.orchestra.run.smithi139.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T14:27:39.015 INFO:teuthology.orchestra.run.smithi139.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T14:27:39.016 INFO:teuthology.orchestra.run.smithi139.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T14:27:39.017 INFO:teuthology.orchestra.run.smithi139.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T14:27:39.017 INFO:teuthology.orchestra.run.smithi162.stdout:Get:10 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-845-ge4e227b3-1jammy [112 kB] 2024-09-16T14:27:39.035 INFO:teuthology.orchestra.run.smithi139.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T14:27:39.035 INFO:teuthology.orchestra.run.smithi139.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T14:27:39.035 INFO:teuthology.orchestra.run.smithi139.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T14:27:39.036 INFO:teuthology.orchestra.run.smithi139.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T14:27:39.036 INFO:teuthology.orchestra.run.smithi139.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T14:27:39.040 INFO:teuthology.orchestra.run.smithi139.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T14:27:39.040 INFO:teuthology.orchestra.run.smithi139.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T14:27:39.041 INFO:teuthology.orchestra.run.smithi139.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T14:27:39.051 INFO:teuthology.orchestra.run.smithi162.stdout:Get:11 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-845-ge4e227b3-1jammy [445 kB] 2024-09-16T14:27:39.052 INFO:teuthology.orchestra.run.smithi139.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T14:27:39.053 INFO:teuthology.orchestra.run.smithi139.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T14:27:39.057 INFO:teuthology.orchestra.run.smithi162.stdout:Get:12 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-845-ge4e227b3-1jammy [22.0 MB] 2024-09-16T14:27:39.062 INFO:teuthology.orchestra.run.smithi162.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libfmt8 amd64 8.1.1+ds1-2 [60.2 kB] 2024-09-16T14:27:39.069 INFO:teuthology.orchestra.run.smithi139.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T14:27:39.069 INFO:teuthology.orchestra.run.smithi139.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T14:27:39.071 INFO:teuthology.orchestra.run.smithi139.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T14:27:39.072 INFO:teuthology.orchestra.run.smithi139.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T14:27:39.073 INFO:teuthology.orchestra.run.smithi139.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T14:27:39.079 INFO:teuthology.orchestra.run.smithi139.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T14:27:39.080 INFO:teuthology.orchestra.run.smithi139.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T14:27:39.080 INFO:teuthology.orchestra.run.smithi139.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T14:27:39.086 INFO:teuthology.orchestra.run.smithi139.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T14:27:39.088 INFO:teuthology.orchestra.run.smithi139.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T14:27:39.099 INFO:teuthology.orchestra.run.smithi139.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T14:27:39.100 INFO:teuthology.orchestra.run.smithi139.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T14:27:39.101 INFO:teuthology.orchestra.run.smithi139.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T14:27:39.102 INFO:teuthology.orchestra.run.smithi139.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T14:27:39.105 INFO:teuthology.orchestra.run.smithi139.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T14:27:39.106 INFO:teuthology.orchestra.run.smithi139.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T14:27:39.107 INFO:teuthology.orchestra.run.smithi139.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T14:27:39.110 INFO:teuthology.orchestra.run.smithi139.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T14:27:39.130 INFO:teuthology.orchestra.run.smithi162.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T14:27:39.168 INFO:teuthology.orchestra.run.smithi139.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T14:27:39.169 INFO:teuthology.orchestra.run.smithi139.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T14:27:39.169 INFO:teuthology.orchestra.run.smithi162.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T14:27:39.170 INFO:teuthology.orchestra.run.smithi139.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T14:27:39.170 INFO:teuthology.orchestra.run.smithi139.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T14:27:39.171 INFO:teuthology.orchestra.run.smithi139.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T14:27:39.172 INFO:teuthology.orchestra.run.smithi139.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T14:27:39.172 INFO:teuthology.orchestra.run.smithi139.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T14:27:39.174 INFO:teuthology.orchestra.run.smithi139.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T14:27:39.174 INFO:teuthology.orchestra.run.smithi139.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T14:27:39.175 INFO:teuthology.orchestra.run.smithi162.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T14:27:39.187 INFO:teuthology.orchestra.run.smithi139.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T14:27:39.188 INFO:teuthology.orchestra.run.smithi162.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5core5a amd64 5.15.3+dfsg-2ubuntu0.2 [2,006 kB] 2024-09-16T14:27:39.192 INFO:teuthology.orchestra.run.smithi019.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblttng-ust1 amd64 2.13.1-1ubuntu1 [190 kB] 2024-09-16T14:27:39.204 INFO:teuthology.orchestra.run.smithi139.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T14:27:39.206 INFO:teuthology.orchestra.run.smithi139.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T14:27:39.206 INFO:teuthology.orchestra.run.smithi139.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T14:27:39.221 INFO:teuthology.orchestra.run.smithi139.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T14:27:39.221 INFO:teuthology.orchestra.run.smithi139.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T14:27:39.222 INFO:teuthology.orchestra.run.smithi139.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T14:27:39.222 INFO:teuthology.orchestra.run.smithi139.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T14:27:39.222 INFO:teuthology.orchestra.run.smithi139.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T14:27:39.223 INFO:teuthology.orchestra.run.smithi139.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T14:27:39.223 INFO:teuthology.orchestra.run.smithi139.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T14:27:39.240 INFO:teuthology.orchestra.run.smithi139.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T14:27:39.243 INFO:teuthology.orchestra.run.smithi139.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T14:27:39.245 INFO:teuthology.orchestra.run.smithi139.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T14:27:39.245 INFO:teuthology.orchestra.run.smithi162.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T14:27:39.246 INFO:teuthology.orchestra.run.smithi139.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T14:27:39.246 INFO:teuthology.orchestra.run.smithi139.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T14:27:39.249 INFO:teuthology.orchestra.run.smithi162.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T14:27:39.257 INFO:teuthology.orchestra.run.smithi139.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T14:27:39.260 INFO:teuthology.orchestra.run.smithi139.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T14:27:39.261 INFO:teuthology.orchestra.run.smithi162.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T14:27:39.264 INFO:teuthology.orchestra.run.smithi139.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T14:27:39.265 INFO:teuthology.orchestra.run.smithi162.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T14:27:39.266 INFO:teuthology.orchestra.run.smithi162.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T14:27:39.266 INFO:teuthology.orchestra.run.smithi139.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T14:27:39.267 INFO:teuthology.orchestra.run.smithi139.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T14:27:39.267 INFO:teuthology.orchestra.run.smithi162.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T14:27:39.274 INFO:teuthology.orchestra.run.smithi139.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T14:27:39.275 INFO:teuthology.orchestra.run.smithi162.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T14:27:39.275 INFO:teuthology.orchestra.run.smithi162.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T14:27:39.276 INFO:teuthology.orchestra.run.smithi162.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T14:27:39.277 INFO:teuthology.orchestra.run.smithi162.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T14:27:39.281 INFO:teuthology.orchestra.run.smithi139.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T14:27:39.281 INFO:teuthology.orchestra.run.smithi139.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T14:27:39.282 INFO:teuthology.orchestra.run.smithi139.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T14:27:39.283 INFO:teuthology.orchestra.run.smithi162.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T14:27:39.283 INFO:teuthology.orchestra.run.smithi162.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T14:27:39.300 INFO:teuthology.orchestra.run.smithi162.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T14:27:39.300 INFO:teuthology.orchestra.run.smithi162.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T14:27:39.300 INFO:teuthology.orchestra.run.smithi162.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T14:27:39.301 INFO:teuthology.orchestra.run.smithi162.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T14:27:39.304 INFO:teuthology.orchestra.run.smithi162.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T14:27:39.304 INFO:teuthology.orchestra.run.smithi162.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T14:27:39.305 INFO:teuthology.orchestra.run.smithi162.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T14:27:39.305 INFO:teuthology.orchestra.run.smithi162.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T14:27:39.317 INFO:teuthology.orchestra.run.smithi162.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T14:27:39.317 INFO:teuthology.orchestra.run.smithi162.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T14:27:39.333 INFO:teuthology.orchestra.run.smithi162.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T14:27:39.335 INFO:teuthology.orchestra.run.smithi162.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T14:27:39.336 INFO:teuthology.orchestra.run.smithi162.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T14:27:39.336 INFO:teuthology.orchestra.run.smithi162.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T14:27:39.342 INFO:teuthology.orchestra.run.smithi162.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T14:27:39.342 INFO:teuthology.orchestra.run.smithi162.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T14:27:39.343 INFO:teuthology.orchestra.run.smithi162.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T14:27:39.343 INFO:teuthology.orchestra.run.smithi162.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T14:27:39.350 INFO:teuthology.orchestra.run.smithi162.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T14:27:39.352 INFO:teuthology.orchestra.run.smithi162.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T14:27:39.362 INFO:teuthology.orchestra.run.smithi162.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T14:27:39.364 INFO:teuthology.orchestra.run.smithi162.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T14:27:39.364 INFO:teuthology.orchestra.run.smithi019.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdouble-conversion3 amd64 3.1.7-4 [39.0 kB] 2024-09-16T14:27:39.365 INFO:teuthology.orchestra.run.smithi162.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T14:27:39.367 INFO:teuthology.orchestra.run.smithi162.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T14:27:39.368 INFO:teuthology.orchestra.run.smithi162.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T14:27:39.369 INFO:teuthology.orchestra.run.smithi162.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T14:27:39.372 INFO:teuthology.orchestra.run.smithi162.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T14:27:39.379 INFO:teuthology.orchestra.run.smithi019.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB] 2024-09-16T14:27:39.425 INFO:teuthology.orchestra.run.smithi162.stdout:Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T14:27:39.426 INFO:teuthology.orchestra.run.smithi162.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T14:27:39.427 INFO:teuthology.orchestra.run.smithi162.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T14:27:39.427 INFO:teuthology.orchestra.run.smithi162.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T14:27:39.429 INFO:teuthology.orchestra.run.smithi162.stdout:Get:61 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T14:27:39.429 INFO:teuthology.orchestra.run.smithi162.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T14:27:39.429 INFO:teuthology.orchestra.run.smithi162.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T14:27:39.431 INFO:teuthology.orchestra.run.smithi162.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T14:27:39.431 INFO:teuthology.orchestra.run.smithi162.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T14:27:39.433 INFO:teuthology.orchestra.run.smithi139.stdout:Get:80 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-845-ge4e227b3-1jammy [3,108 kB] 2024-09-16T14:27:39.443 INFO:teuthology.orchestra.run.smithi162.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T14:27:39.452 INFO:teuthology.orchestra.run.smithi019.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-16T14:27:39.460 INFO:teuthology.orchestra.run.smithi162.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T14:27:39.478 INFO:teuthology.orchestra.run.smithi162.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T14:27:39.478 INFO:teuthology.orchestra.run.smithi162.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T14:27:39.503 INFO:teuthology.orchestra.run.smithi162.stdout:Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T14:27:39.503 INFO:teuthology.orchestra.run.smithi162.stdout:Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T14:27:39.503 INFO:teuthology.orchestra.run.smithi162.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T14:27:39.504 INFO:teuthology.orchestra.run.smithi162.stdout:Get:73 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T14:27:39.504 INFO:teuthology.orchestra.run.smithi162.stdout:Get:74 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T14:27:39.569 INFO:teuthology.orchestra.run.smithi162.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T14:27:39.569 INFO:teuthology.orchestra.run.smithi162.stdout:Get:76 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-845-ge4e227b3-1jammy [5,005 kB] 2024-09-16T14:27:39.569 INFO:teuthology.orchestra.run.smithi162.stdout:Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T14:27:39.569 INFO:teuthology.orchestra.run.smithi162.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T14:27:39.573 INFO:teuthology.orchestra.run.smithi162.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T14:27:39.575 INFO:teuthology.orchestra.run.smithi162.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T14:27:39.577 INFO:teuthology.orchestra.run.smithi162.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T14:27:39.577 INFO:teuthology.orchestra.run.smithi162.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T14:27:39.581 INFO:teuthology.orchestra.run.smithi162.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T14:27:39.586 INFO:teuthology.orchestra.run.smithi162.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T14:27:39.603 INFO:teuthology.orchestra.run.smithi162.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T14:27:39.606 INFO:teuthology.orchestra.run.smithi162.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T14:27:39.607 INFO:teuthology.orchestra.run.smithi162.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T14:27:39.609 INFO:teuthology.orchestra.run.smithi162.stdout:Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T14:27:39.617 INFO:teuthology.orchestra.run.smithi162.stdout:Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T14:27:39.617 INFO:teuthology.orchestra.run.smithi162.stdout:Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T14:27:39.617 INFO:teuthology.orchestra.run.smithi162.stdout:Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T14:27:39.624 INFO:teuthology.orchestra.run.smithi139.stdout:Get:81 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-845-ge4e227b3-1jammy [683 kB] 2024-09-16T14:27:39.639 INFO:teuthology.orchestra.run.smithi162.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-845-ge4e227b3-1jammy [241 kB] 2024-09-16T14:27:39.641 INFO:teuthology.orchestra.run.smithi162.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-845-ge4e227b3-1jammy [130 kB] 2024-09-16T14:27:39.643 INFO:teuthology.orchestra.run.smithi162.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-845-ge4e227b3-1jammy [1,494 kB] 2024-09-16T14:27:39.647 INFO:teuthology.orchestra.run.smithi019.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5dbus5 amd64 5.15.3+dfsg-2ubuntu0.2 [222 kB] 2024-09-16T14:27:39.656 INFO:teuthology.orchestra.run.smithi019.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libqt5network5 amd64 5.15.3+dfsg-2ubuntu0.2 [731 kB] 2024-09-16T14:27:39.662 INFO:teuthology.orchestra.run.smithi162.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-845-ge4e227b3-1jammy [6,085 kB] 2024-09-16T14:27:39.684 INFO:teuthology.orchestra.run.smithi019.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libthrift-0.16.0 amd64 0.16.0-2 [267 kB] 2024-09-16T14:27:39.692 INFO:teuthology.orchestra.run.smithi019.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-wcwidth all 0.2.5+dfsg1-1 [21.9 kB] 2024-09-16T14:27:39.693 INFO:teuthology.orchestra.run.smithi019.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-prettytable all 2.5.0-2 [31.3 kB] 2024-09-16T14:27:39.695 INFO:teuthology.orchestra.run.smithi019.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librdkafka1 amd64 1.8.0-1build1 [633 kB] 2024-09-16T14:27:39.701 INFO:teuthology.orchestra.run.smithi139.stdout:Get:82 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-845-ge4e227b3-1jammy [357 kB] 2024-09-16T14:27:39.712 INFO:teuthology.orchestra.run.smithi019.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 liboath0 amd64 2.6.7-3build1 [41.1 kB] 2024-09-16T14:27:39.714 INFO:teuthology.orchestra.run.smithi019.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.functools all 3.4.0-2 [9,030 B] 2024-09-16T14:27:39.715 INFO:teuthology.orchestra.run.smithi019.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-cheroot all 8.5.2+ds1-1ubuntu3.1 [71.1 kB] 2024-09-16T14:27:39.720 INFO:teuthology.orchestra.run.smithi139.stdout:Get:83 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-845-ge4e227b3-1jammy [32.8 kB] 2024-09-16T14:27:39.721 INFO:teuthology.orchestra.run.smithi139.stdout:Get:84 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-845-ge4e227b3-1jammy [180 kB] 2024-09-16T14:27:39.730 INFO:teuthology.orchestra.run.smithi019.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.classes all 3.2.1-3 [6,452 B] 2024-09-16T14:27:39.761 INFO:teuthology.orchestra.run.smithi139.stdout:Get:85 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-845-ge4e227b3-1jammy [63.7 kB] 2024-09-16T14:27:39.771 INFO:teuthology.orchestra.run.smithi139.stdout:Get:86 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-845-ge4e227b3-1jammy [333 kB] 2024-09-16T14:27:39.784 INFO:teuthology.orchestra.run.smithi139.stdout:Get:87 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-845-ge4e227b3-1jammy [5,934 kB] 2024-09-16T14:27:39.789 INFO:teuthology.orchestra.run.smithi162.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-845-ge4e227b3-1jammy [22.4 MB] 2024-09-16T14:27:39.799 INFO:teuthology.orchestra.run.smithi019.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.text all 3.6.0-2 [8,716 B] 2024-09-16T14:27:39.799 INFO:teuthology.orchestra.run.smithi019.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jaraco.collections all 3.4.0-2 [11.4 kB] 2024-09-16T14:27:39.800 INFO:teuthology.orchestra.run.smithi019.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempora all 4.1.2-1 [14.8 kB] 2024-09-16T14:27:39.801 INFO:teuthology.orchestra.run.smithi019.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-portend all 3.0.0-1 [7,240 B] 2024-09-16T14:27:39.802 INFO:teuthology.orchestra.run.smithi019.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-zc.lockfile all 2.0-1 [8,980 B] 2024-09-16T14:27:39.802 INFO:teuthology.orchestra.run.smithi019.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cherrypy3 all 18.6.1-4 [208 kB] 2024-09-16T14:27:39.808 INFO:teuthology.orchestra.run.smithi019.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-natsort all 8.0.2-1 [35.3 kB] 2024-09-16T14:27:39.809 INFO:teuthology.orchestra.run.smithi019.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-logutils all 0.3.3-8 [17.6 kB] 2024-09-16T14:27:39.812 INFO:teuthology.orchestra.run.smithi019.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-markupsafe amd64 2.0.1-2build1 [12.7 kB] 2024-09-16T14:27:39.849 INFO:teuthology.orchestra.run.smithi019.stdout:Get:26 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librbd1 amd64 18.2.4-845-ge4e227b3-1jammy [3,108 kB] 2024-09-16T14:27:39.893 INFO:teuthology.orchestra.run.smithi019.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-mako all 1.1.3+ds1-2ubuntu0.1 [60.5 kB] 2024-09-16T14:27:39.895 INFO:teuthology.orchestra.run.smithi019.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplegeneric all 0.8.1-3 [11.3 kB] 2024-09-16T14:27:39.896 INFO:teuthology.orchestra.run.smithi019.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-singledispatch all 3.4.0.3-3 [7,320 B] 2024-09-16T14:27:39.896 INFO:teuthology.orchestra.run.smithi019.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-webob all 1:1.8.6-1.1ubuntu0.1 [86.7 kB] 2024-09-16T14:27:39.899 INFO:teuthology.orchestra.run.smithi019.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-waitress all 1.4.4-1.1ubuntu1 [47.3 kB] 2024-09-16T14:27:39.901 INFO:teuthology.orchestra.run.smithi019.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-tempita all 0.5.2-6ubuntu1 [15.1 kB] 2024-09-16T14:27:39.901 INFO:teuthology.orchestra.run.smithi019.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-paste all 3.5.0+dfsg1-1 [456 kB] 2024-09-16T14:27:39.912 INFO:teuthology.orchestra.run.smithi019.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-pastedeploy-tpl all 2.1.1-1 [4,892 B] 2024-09-16T14:27:39.975 INFO:teuthology.orchestra.run.smithi019.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastedeploy all 2.1.1-1 [26.6 kB] 2024-09-16T14:27:39.977 INFO:teuthology.orchestra.run.smithi019.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-webtest all 2.0.35-1 [28.5 kB] 2024-09-16T14:27:39.994 INFO:teuthology.orchestra.run.smithi019.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pecan all 1.3.3-4ubuntu2 [87.3 kB] 2024-09-16T14:27:39.997 INFO:teuthology.orchestra.run.smithi019.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-16T14:27:40.000 INFO:teuthology.orchestra.run.smithi019.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-16T14:27:40.002 INFO:teuthology.orchestra.run.smithi019.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-16T14:27:40.057 INFO:teuthology.orchestra.run.smithi019.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-16T14:27:40.058 INFO:teuthology.orchestra.run.smithi019.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-werkzeug all 2.0.2+dfsg1-1ubuntu0.22.04.2 [181 kB] 2024-09-16T14:27:40.063 INFO:teuthology.orchestra.run.smithi019.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-bcrypt amd64 3.2.0-1build1 [32.7 kB] 2024-09-16T14:27:40.064 INFO:teuthology.orchestra.run.smithi019.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-openssl all 21.0.0-1 [45.2 kB] 2024-09-16T14:27:40.138 INFO:teuthology.orchestra.run.smithi019.stdout:Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-asyncssh all 2.5.0-1 [185 kB] 2024-09-16T14:27:40.143 INFO:teuthology.orchestra.run.smithi019.stdout:Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 python-babel-localedata all 2.8.0+dfsg.1-7 [4,982 kB] 2024-09-16T14:27:40.304 INFO:teuthology.orchestra.run.smithi019.stdout:Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-babel all 2.8.0+dfsg.1-7 [85.1 kB] 2024-09-16T14:27:40.306 INFO:teuthology.orchestra.run.smithi019.stdout:Get:48 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-jinja2 all 3.0.3-1ubuntu0.2 [108 kB] 2024-09-16T14:27:40.309 INFO:teuthology.orchestra.run.smithi019.stdout:Get:49 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pluggy all 0.13.0-7.1 [19.0 kB] 2024-09-16T14:27:40.310 INFO:teuthology.orchestra.run.smithi019.stdout:Get:50 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-py all 1.10.0-1 [71.9 kB] 2024-09-16T14:27:40.312 INFO:teuthology.orchestra.run.smithi019.stdout:Get:51 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-iniconfig all 1.1.1-2 [6,024 B] 2024-09-16T14:27:40.312 INFO:teuthology.orchestra.run.smithi019.stdout:Get:52 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-toml all 0.10.2-1 [16.5 kB] 2024-09-16T14:27:40.313 INFO:teuthology.orchestra.run.smithi019.stdout:Get:53 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-pytest all 6.2.5-1ubuntu2 [214 kB] 2024-09-16T14:27:40.318 INFO:teuthology.orchestra.run.smithi019.stdout:Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-repoze.lru all 0.7-2 [12.1 kB] 2024-09-16T14:27:40.318 INFO:teuthology.orchestra.run.smithi019.stdout:Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-routes all 2.5.1-1ubuntu1 [89.0 kB] 2024-09-16T14:27:40.322 INFO:teuthology.orchestra.run.smithi139.stdout:Get:88 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-845-ge4e227b3-1jammy [112 kB] 2024-09-16T14:27:40.325 INFO:teuthology.orchestra.run.smithi139.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-845-ge4e227b3-1jammy [445 kB] 2024-09-16T14:27:40.359 INFO:teuthology.orchestra.run.smithi139.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-845-ge4e227b3-1jammy [22.0 MB] 2024-09-16T14:27:40.381 INFO:teuthology.orchestra.run.smithi162.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-845-ge4e227b3-1jammy [14.1 kB] 2024-09-16T14:27:40.382 INFO:teuthology.orchestra.run.smithi162.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-845-ge4e227b3-1jammy [834 kB] 2024-09-16T14:27:40.390 INFO:teuthology.orchestra.run.smithi019.stdout:Get:56 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn-lib amd64 0.23.2-5ubuntu6 [2,058 kB] 2024-09-16T14:27:40.396 INFO:teuthology.orchestra.run.smithi162.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-845-ge4e227b3-1jammy [2,159 kB] 2024-09-16T14:27:40.402 INFO:teuthology.orchestra.run.smithi019.stdout:Get:57 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs2 amd64 18.2.4-845-ge4e227b3-1jammy [683 kB] 2024-09-16T14:27:40.432 INFO:teuthology.orchestra.run.smithi162.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-845-ge4e227b3-1jammy [240 kB] 2024-09-16T14:27:40.436 INFO:teuthology.orchestra.run.smithi162.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-845-ge4e227b3-1jammy [145 kB] 2024-09-16T14:27:40.436 INFO:teuthology.orchestra.run.smithi019.stdout:Get:58 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-joblib all 0.17.0-4ubuntu1 [204 kB] 2024-09-16T14:27:40.438 INFO:teuthology.orchestra.run.smithi162.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-845-ge4e227b3-1jammy [2,233 kB] 2024-09-16T14:27:40.441 INFO:teuthology.orchestra.run.smithi019.stdout:Get:59 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-threadpoolctl all 3.1.0-1 [21.3 kB] 2024-09-16T14:27:40.441 INFO:teuthology.orchestra.run.smithi019.stdout:Get:60 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-sklearn all 0.23.2-5ubuntu6 [1,829 kB] 2024-09-16T14:27:40.472 INFO:teuthology.orchestra.run.smithi162.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-845-ge4e227b3-1jammy [8,625 kB] 2024-09-16T14:27:40.487 INFO:teuthology.orchestra.run.smithi019.stdout:Get:61 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rados amd64 18.2.4-845-ge4e227b3-1jammy [357 kB] 2024-09-16T14:27:40.493 INFO:teuthology.orchestra.run.smithi019.stdout:Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-cachetools all 5.0.0-1 [9,722 B] 2024-09-16T14:27:40.493 INFO:teuthology.orchestra.run.smithi019.stdout:Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1 all 0.4.8-1 [50.9 kB] 2024-09-16T14:27:40.494 INFO:teuthology.orchestra.run.smithi019.stdout:Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyasn1-modules all 0.2.1-1 [33.0 kB] 2024-09-16T14:27:40.495 INFO:teuthology.orchestra.run.smithi019.stdout:Get:65 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-rsa all 4.8-1 [28.4 kB] 2024-09-16T14:27:40.496 INFO:teuthology.orchestra.run.smithi019.stdout:Get:66 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-google-auth all 1.5.1-3 [35.7 kB] 2024-09-16T14:27:40.497 INFO:teuthology.orchestra.run.smithi019.stdout:Get:67 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-requests-oauthlib all 1.3.0+ds-0.1 [18.7 kB] 2024-09-16T14:27:40.555 INFO:teuthology.orchestra.run.smithi019.stdout:Get:68 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-websocket all 1.2.3-1 [34.7 kB] 2024-09-16T14:27:40.556 INFO:teuthology.orchestra.run.smithi019.stdout:Get:69 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-kubernetes all 12.0.1-1ubuntu1 [353 kB] 2024-09-16T14:27:40.559 INFO:teuthology.orchestra.run.smithi019.stdout:Get:70 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-argparse all 18.2.4-845-ge4e227b3-1jammy [32.8 kB] 2024-09-16T14:27:40.561 INFO:teuthology.orchestra.run.smithi019.stdout:Get:71 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-cephfs amd64 18.2.4-845-ge4e227b3-1jammy [180 kB] 2024-09-16T14:27:40.562 INFO:teuthology.orchestra.run.smithi019.stdout:Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB] 2024-09-16T14:27:40.565 INFO:teuthology.orchestra.run.smithi019.stdout:Get:73 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-ceph-common all 18.2.4-845-ge4e227b3-1jammy [63.7 kB] 2024-09-16T14:27:40.567 INFO:teuthology.orchestra.run.smithi019.stdout:Get:74 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rbd amd64 18.2.4-845-ge4e227b3-1jammy [333 kB] 2024-09-16T14:27:40.636 INFO:teuthology.orchestra.run.smithi019.stdout:Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjq1 amd64 1.6-2.1ubuntu3 [133 kB] 2024-09-16T14:27:40.640 INFO:teuthology.orchestra.run.smithi019.stdout:Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 jq amd64 1.6-2.1ubuntu3 [52.5 kB] 2024-09-16T14:27:40.641 INFO:teuthology.orchestra.run.smithi019.stdout:Get:77 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 librgw2 amd64 18.2.4-845-ge4e227b3-1jammy [5,934 kB] 2024-09-16T14:27:40.641 INFO:teuthology.orchestra.run.smithi019.stdout:Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 [349 kB] 2024-09-16T14:27:40.650 INFO:teuthology.orchestra.run.smithi019.stdout:Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xmlstarlet amd64 1.6.1-2.1 [265 kB] 2024-09-16T14:27:40.656 INFO:teuthology.orchestra.run.smithi019.stdout:Get:80 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 nvme-cli amd64 1.16-3ubuntu0.3 [474 kB] 2024-09-16T14:27:40.667 INFO:teuthology.orchestra.run.smithi019.stdout:Get:81 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python-asyncssh-doc all 2.5.0-1 [318 kB] 2024-09-16T14:27:40.674 INFO:teuthology.orchestra.run.smithi019.stdout:Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pastescript all 2.0.2-4 [54.6 kB] 2024-09-16T14:27:40.685 INFO:teuthology.orchestra.run.smithi162.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-845-ge4e227b3-1jammy [14.3 kB] 2024-09-16T14:27:40.685 INFO:teuthology.orchestra.run.smithi162.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-845-ge4e227b3-1jammy [42.8 MB] 2024-09-16T14:27:40.717 INFO:teuthology.orchestra.run.smithi019.stdout:Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-psutil amd64 5.9.0-1build1 [158 kB] 2024-09-16T14:27:40.721 INFO:teuthology.orchestra.run.smithi019.stdout:Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pygments all 2.11.2+dfsg-2 [750 kB] 2024-09-16T14:27:40.737 INFO:teuthology.orchestra.run.smithi019.stdout:Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-pyinotify all 0.9.6-1.3 [24.8 kB] 2024-09-16T14:27:40.799 INFO:teuthology.orchestra.run.smithi019.stdout:Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-simplejson amd64 3.17.6-1build1 [54.7 kB] 2024-09-16T14:27:40.800 INFO:teuthology.orchestra.run.smithi019.stdout:Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 qttranslations5-l10n all 5.15.3-1 [1,983 kB] 2024-09-16T14:27:41.371 INFO:teuthology.orchestra.run.smithi019.stdout:Get:88 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 python3-rgw amd64 18.2.4-845-ge4e227b3-1jammy [112 kB] 2024-09-16T14:27:41.374 INFO:teuthology.orchestra.run.smithi019.stdout:Get:89 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libradosstriper1 amd64 18.2.4-845-ge4e227b3-1jammy [445 kB] 2024-09-16T14:27:41.426 INFO:teuthology.orchestra.run.smithi019.stdout:Get:90 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-common amd64 18.2.4-845-ge4e227b3-1jammy [22.0 MB] 2024-09-16T14:27:41.793 INFO:teuthology.orchestra.run.smithi139.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-845-ge4e227b3-1jammy [5,005 kB] 2024-09-16T14:27:41.872 INFO:teuthology.orchestra.run.smithi139.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-845-ge4e227b3-1jammy [241 kB] 2024-09-16T14:27:41.890 INFO:teuthology.orchestra.run.smithi139.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-845-ge4e227b3-1jammy [130 kB] 2024-09-16T14:27:41.892 INFO:teuthology.orchestra.run.smithi139.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-845-ge4e227b3-1jammy [1,494 kB] 2024-09-16T14:27:41.971 INFO:teuthology.orchestra.run.smithi139.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-845-ge4e227b3-1jammy [6,085 kB] 2024-09-16T14:27:42.096 INFO:teuthology.orchestra.run.smithi162.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-845-ge4e227b3-1jammy [122 kB] 2024-09-16T14:27:42.098 INFO:teuthology.orchestra.run.smithi162.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-845-ge4e227b3-1jammy [38.3 kB] 2024-09-16T14:27:42.099 INFO:teuthology.orchestra.run.smithi162.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-845-ge4e227b3-1jammy [11.7 MB] 2024-09-16T14:27:42.161 INFO:teuthology.orchestra.run.smithi139.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-845-ge4e227b3-1jammy [22.4 MB] 2024-09-16T14:27:42.370 INFO:teuthology.orchestra.run.smithi162.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-845-ge4e227b3-1jammy [93.1 kB] 2024-09-16T14:27:42.901 INFO:teuthology.orchestra.run.smithi139.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-845-ge4e227b3-1jammy [14.1 kB] 2024-09-16T14:27:42.901 INFO:teuthology.orchestra.run.smithi139.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-845-ge4e227b3-1jammy [834 kB] 2024-09-16T14:27:42.916 INFO:teuthology.orchestra.run.smithi139.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-845-ge4e227b3-1jammy [2,159 kB] 2024-09-16T14:27:42.953 INFO:teuthology.orchestra.run.smithi139.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-845-ge4e227b3-1jammy [240 kB] 2024-09-16T14:27:42.956 INFO:teuthology.orchestra.run.smithi139.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-845-ge4e227b3-1jammy [145 kB] 2024-09-16T14:27:42.958 INFO:teuthology.orchestra.run.smithi139.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-845-ge4e227b3-1jammy [2,233 kB] 2024-09-16T14:27:42.964 INFO:teuthology.orchestra.run.smithi162.stdout:Fetched 163 MB in 4s (42.1 MB/s) 2024-09-16T14:27:42.982 INFO:teuthology.orchestra.run.smithi139.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-845-ge4e227b3-1jammy [8,625 kB] 2024-09-16T14:27:43.104 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-16T14:27:43.111 INFO:teuthology.orchestra.run.smithi019.stdout:Get:91 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-base amd64 18.2.4-845-ge4e227b3-1jammy [5,005 kB] 2024-09-16T14:27:43.174 INFO:teuthology.orchestra.run.smithi139.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-845-ge4e227b3-1jammy [14.3 kB] 2024-09-16T14:27:43.175 INFO:teuthology.orchestra.run.smithi139.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-845-ge4e227b3-1jammy [42.8 MB] 2024-09-16T14:27:43.203 INFO:teuthology.orchestra.run.smithi162.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-16T14:27:43.208 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-16T14:27:43.294 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:27:43.336 INFO:teuthology.orchestra.run.smithi019.stdout:Get:92 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-modules-core all 18.2.4-845-ge4e227b3-1jammy [241 kB] 2024-09-16T14:27:43.358 INFO:teuthology.orchestra.run.smithi019.stdout:Get:93 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libsqlite3-mod-ceph amd64 18.2.4-845-ge4e227b3-1jammy [130 kB] 2024-09-16T14:27:43.361 INFO:teuthology.orchestra.run.smithi019.stdout:Get:94 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr amd64 18.2.4-845-ge4e227b3-1jammy [1,494 kB] 2024-09-16T14:27:43.445 INFO:teuthology.orchestra.run.smithi019.stdout:Get:95 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mon amd64 18.2.4-845-ge4e227b3-1jammy [6,085 kB] 2024-09-16T14:27:43.616 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T14:27:43.642 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T14:27:43.682 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:27:43.785 INFO:teuthology.orchestra.run.smithi019.stdout:Get:96 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-osd amd64 18.2.4-845-ge4e227b3-1jammy [22.4 MB] 2024-09-16T14:27:44.019 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T14:27:44.045 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T14:27:44.086 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:27:44.352 INFO:teuthology.orchestra.run.smithi139.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-845-ge4e227b3-1jammy [122 kB] 2024-09-16T14:27:44.354 INFO:teuthology.orchestra.run.smithi139.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-845-ge4e227b3-1jammy [38.3 kB] 2024-09-16T14:27:44.355 INFO:teuthology.orchestra.run.smithi139.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-845-ge4e227b3-1jammy [11.7 MB] 2024-09-16T14:27:44.431 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T14:27:44.457 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T14:27:44.497 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:27:44.559 INFO:teuthology.orchestra.run.smithi139.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-845-ge4e227b3-1jammy [93.1 kB] 2024-09-16T14:27:44.914 INFO:teuthology.orchestra.run.smithi019.stdout:Get:97 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph amd64 18.2.4-845-ge4e227b3-1jammy [14.1 kB] 2024-09-16T14:27:44.915 INFO:teuthology.orchestra.run.smithi019.stdout:Get:98 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-fuse amd64 18.2.4-845-ge4e227b3-1jammy [834 kB] 2024-09-16T14:27:44.926 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T14:27:44.931 INFO:teuthology.orchestra.run.smithi019.stdout:Get:99 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mds amd64 18.2.4-845-ge4e227b3-1jammy [2,159 kB] 2024-09-16T14:27:44.952 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:45.000 INFO:teuthology.orchestra.run.smithi019.stdout:Get:100 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 cephadm amd64 18.2.4-845-ge4e227b3-1jammy [240 kB] 2024-09-16T14:27:45.001 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:45.005 INFO:teuthology.orchestra.run.smithi019.stdout:Get:101 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-cephadm all 18.2.4-845-ge4e227b3-1jammy [145 kB] 2024-09-16T14:27:45.008 INFO:teuthology.orchestra.run.smithi019.stdout:Get:102 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-dashboard all 18.2.4-845-ge4e227b3-1jammy [2,233 kB] 2024-09-16T14:27:45.091 INFO:teuthology.orchestra.run.smithi019.stdout:Get:103 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-diskprediction-local all 18.2.4-845-ge4e227b3-1jammy [8,625 kB] 2024-09-16T14:27:45.124 INFO:teuthology.orchestra.run.smithi139.stdout:Fetched 163 MB in 6s (27.9 MB/s) 2024-09-16T14:27:45.245 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-16T14:27:45.344 INFO:teuthology.orchestra.run.smithi139.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-16T14:27:45.349 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-16T14:27:45.404 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T14:27:45.419 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:27:45.430 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:45.470 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:45.748 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T14:27:45.774 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T14:27:45.790 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T14:27:45.814 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:27:45.817 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:45.857 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:46.117 INFO:teuthology.orchestra.run.smithi019.stdout:Get:104 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-mgr-k8sevents all 18.2.4-845-ge4e227b3-1jammy [14.3 kB] 2024-09-16T14:27:46.117 INFO:teuthology.orchestra.run.smithi019.stdout:Get:105 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-test amd64 18.2.4-845-ge4e227b3-1jammy [42.8 MB] 2024-09-16T14:27:46.151 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T14:27:46.177 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T14:27:46.193 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T14:27:46.217 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:27:46.220 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T14:27:46.260 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:27:46.553 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T14:27:46.571 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package librados2. 2024-09-16T14:27:46.580 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T14:27:46.597 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../008-librados2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:46.620 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:27:46.638 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:47.274 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T14:27:47.300 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package librbd1. 2024-09-16T14:27:47.301 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:47.326 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../009-librbd1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:47.349 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:47.366 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:47.735 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T14:27:47.761 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:47.777 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T14:27:47.801 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:47.803 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:47.843 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:48.121 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-rados. 2024-09-16T14:27:48.138 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T14:27:48.147 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../011-python3-rados_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:48.164 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:48.196 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:48.204 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:48.507 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T14:27:48.534 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T14:27:48.574 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:27:48.591 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T14:27:48.617 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:27:48.657 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:48.885 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package librados2. 2024-09-16T14:27:48.911 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../008-librados2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:48.926 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T14:27:48.952 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:48.953 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:48.993 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:49.279 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T14:27:49.306 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:27:49.346 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:49.413 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package librbd1. 2024-09-16T14:27:49.439 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../009-librbd1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:49.479 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:49.666 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T14:27:49.692 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T14:27:49.732 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:27:49.899 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T14:27:49.925 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:49.957 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:50.044 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T14:27:50.070 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T14:27:50.110 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T14:27:50.226 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-rados. 2024-09-16T14:27:50.241 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../011-python3-rados_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:50.284 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:50.371 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T14:27:50.397 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:50.438 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:50.604 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T14:27:50.630 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:27:50.671 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:50.741 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T14:27:50.767 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T14:27:50.799 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:27:50.923 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T14:27:50.938 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:50.981 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:51.111 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package librgw2. 2024-09-16T14:27:51.137 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../019-librgw2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:51.177 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:51.267 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T14:27:51.294 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:27:51.325 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:51.587 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T14:27:51.613 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T14:27:51.653 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:27:51.681 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T14:27:51.695 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:51.738 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:51.965 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T14:27:51.991 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T14:27:52.031 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T14:27:52.074 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T14:27:52.101 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T14:27:52.141 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:27:52.326 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T14:27:52.341 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:52.384 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:52.461 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T14:27:52.487 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:52.527 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:52.679 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T14:27:52.705 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T14:27:52.737 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:27:52.898 INFO:teuthology.orchestra.run.smithi019.stdout:Get:106 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 ceph-volume all 18.2.4-845-ge4e227b3-1jammy [122 kB] 2024-09-16T14:27:52.900 INFO:teuthology.orchestra.run.smithi019.stdout:Get:107 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 libcephfs-dev amd64 18.2.4-845-ge4e227b3-1jammy [38.3 kB] 2024-09-16T14:27:52.959 INFO:teuthology.orchestra.run.smithi019.stdout:Get:108 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 radosgw amd64 18.2.4-845-ge4e227b3-1jammy [11.7 MB] 2024-09-16T14:27:52.964 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-common. 2024-09-16T14:27:52.991 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../023-ceph-common_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:53.039 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:53.075 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package librgw2. 2024-09-16T14:27:53.075 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../019-librgw2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:53.117 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:53.609 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T14:27:53.624 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:53.667 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:54.003 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T14:27:54.030 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T14:27:54.070 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:27:54.328 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-base. 2024-09-16T14:27:54.331 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T14:27:54.354 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../024-ceph-base_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:54.357 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:54.397 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:54.404 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:54.522 INFO:teuthology.orchestra.run.smithi019.stdout:Get:109 https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default jammy/main amd64 rbd-fuse amd64 18.2.4-845-ge4e227b3-1jammy [93.1 kB] 2024-09-16T14:27:54.818 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-common. 2024-09-16T14:27:54.844 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../023-ceph-common_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:54.884 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:54.983 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T14:27:55.009 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T14:27:55.049 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:27:55.147 INFO:teuthology.orchestra.run.smithi019.stdout:Fetched 163 MB in 16s (10.3 MB/s) 2024-09-16T14:27:55.327 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T14:27:55.342 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libfmt8:amd64. 2024-09-16T14:27:55.354 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T14:27:55.394 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:27:55.447 INFO:teuthology.orchestra.run.smithi019.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-16T14:27:55.453 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../000-libfmt8_8.1.1+ds1-2_amd64.deb ... 2024-09-16T14:27:55.533 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:27:55.705 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T14:27:55.729 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T14:27:55.772 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:27:55.871 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package liblttng-ust1:amd64. 2024-09-16T14:27:55.898 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../001-liblttng-ust1_2.13.1-1ubuntu1_amd64.deb ... 2024-09-16T14:27:55.938 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:27:56.075 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T14:27:56.101 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T14:27:56.141 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:27:56.165 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-base. 2024-09-16T14:27:56.191 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../024-ceph-base_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:56.241 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:56.266 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libdouble-conversion3:amd64. 2024-09-16T14:27:56.293 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../002-libdouble-conversion3_3.1.7-4_amd64.deb ... 2024-09-16T14:27:56.324 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:27:56.436 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T14:27:56.462 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T14:27:56.503 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:27:56.661 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libpcre2-16-0:amd64. 2024-09-16T14:27:56.688 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../003-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ... 2024-09-16T14:27:56.736 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:27:56.772 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T14:27:56.788 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T14:27:56.823 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T14:27:56.852 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T14:27:56.878 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T14:27:56.919 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:27:57.151 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-portend. 2024-09-16T14:27:57.163 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T14:27:57.177 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-16T14:27:57.189 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T14:27:57.217 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T14:27:57.230 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:27:57.315 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libqt5core5a:amd64. 2024-09-16T14:27:57.341 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../004-libqt5core5a_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:57.390 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:57.670 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T14:27:57.696 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T14:27:57.737 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T14:27:57.766 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T14:27:57.793 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T14:27:57.826 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libqt5dbus5:amd64. 2024-09-16T14:27:57.832 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:27:57.853 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../005-libqt5dbus5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:57.892 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:58.007 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T14:27:58.032 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T14:27:58.065 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:27:58.135 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T14:27:58.162 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T14:27:58.196 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libqt5network5:amd64. 2024-09-16T14:27:58.202 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:27:58.223 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../006-libqt5network5_5.15.3+dfsg-2ubuntu0.2_amd64.deb ... 2024-09-16T14:27:58.254 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:27:58.419 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T14:27:58.445 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T14:27:58.485 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T14:27:58.488 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T14:27:58.514 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T14:27:58.557 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:27:58.582 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libthrift-0.16.0:amd64. 2024-09-16T14:27:58.609 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../007-libthrift-0.16.0_0.16.0-2_amd64.deb ... 2024-09-16T14:27:58.649 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:27:58.805 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T14:27:58.831 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T14:27:58.843 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T14:27:58.869 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T14:27:58.872 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T14:27:58.909 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T14:27:58.968 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package librados2. 2024-09-16T14:27:58.996 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../008-librados2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:59.035 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:59.141 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T14:27:59.167 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T14:27:59.199 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:27:59.287 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-portend. 2024-09-16T14:27:59.313 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-16T14:27:59.370 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T14:27:59.461 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-mako. 2024-09-16T14:27:59.487 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T14:27:59.496 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package librbd1. 2024-09-16T14:27:59.523 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../009-librbd1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:59.527 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:27:59.563 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:59.648 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T14:27:59.674 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T14:27:59.714 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T14:27:59.864 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T14:27:59.890 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T14:27:59.924 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libcephfs2. 2024-09-16T14:27:59.930 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:27:59.940 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../010-libcephfs2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:27:59.982 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:27:59.992 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T14:28:00.019 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T14:28:00.059 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:28:00.234 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T14:28:00.260 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T14:28:00.300 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:28:00.396 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T14:28:00.409 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-rados. 2024-09-16T14:28:00.423 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T14:28:00.436 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../011-python3-rados_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:00.462 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T14:28:00.476 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:00.561 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-webob. 2024-09-16T14:28:00.576 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T14:28:00.611 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:28:00.774 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T14:28:00.800 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T14:28:00.805 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-ceph-argparse. 2024-09-16T14:28:00.831 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../012-python3-ceph-argparse_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:00.848 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T14:28:00.871 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:00.898 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T14:28:00.924 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T14:28:00.959 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:01.100 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-cephfs. 2024-09-16T14:28:01.114 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../013-python3-cephfs_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:01.148 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:01.151 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T14:28:01.178 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T14:28:01.217 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:28:01.284 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T14:28:01.310 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T14:28:01.351 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:01.418 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-ceph-common. 2024-09-16T14:28:01.444 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../014-python3-ceph-common_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:01.484 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:01.520 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-mako. 2024-09-16T14:28:01.547 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T14:28:01.587 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:28:01.654 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-paste. 2024-09-16T14:28:01.680 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T14:28:01.720 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:01.796 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-wcwidth. 2024-09-16T14:28:01.823 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../015-python3-wcwidth_0.2.5+dfsg1-1_all.deb ... 2024-09-16T14:28:01.862 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:28:01.915 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T14:28:01.941 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T14:28:01.981 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:28:02.041 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T14:28:02.056 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T14:28:02.099 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:02.182 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-prettytable. 2024-09-16T14:28:02.209 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../016-python3-prettytable_2.5.0-2_all.deb ... 2024-09-16T14:28:02.248 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-prettytable (2.5.0-2) ... 2024-09-16T14:28:02.259 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T14:28:02.274 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T14:28:02.309 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:28:02.402 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T14:28:02.428 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T14:28:02.468 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:28:02.509 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-rbd. 2024-09-16T14:28:02.536 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../017-python3-rbd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:02.568 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:02.620 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-webob. 2024-09-16T14:28:02.636 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T14:28:02.670 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:28:02.763 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T14:28:02.789 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T14:28:02.886 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T14:28:02.896 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package librdkafka1:amd64. 2024-09-16T14:28:02.923 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../018-librdkafka1_1.8.0-1build1_amd64.deb ... 2024-09-16T14:28:02.962 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:28:02.981 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T14:28:03.008 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T14:28:03.051 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:03.250 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T14:28:03.276 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T14:28:03.290 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package librgw2. 2024-09-16T14:28:03.316 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:28:03.317 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../019-librgw2_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:03.357 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:03.368 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T14:28:03.394 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T14:28:03.451 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:03.646 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T14:28:03.672 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T14:28:03.712 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:03.753 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-paste. 2024-09-16T14:28:03.781 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T14:28:03.820 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:03.876 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-rgw. 2024-09-16T14:28:03.892 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../020-python3-rgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:03.934 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:04.041 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-idna. 2024-09-16T14:28:04.067 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T14:28:04.107 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:04.156 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T14:28:04.184 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T14:28:04.223 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:04.246 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package liboath0:amd64. 2024-09-16T14:28:04.272 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../021-liboath0_2.6.7-3build1_amd64.deb ... 2024-09-16T14:28:04.312 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:28:04.419 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T14:28:04.445 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T14:28:04.485 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:28:04.501 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T14:28:04.528 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T14:28:04.567 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:28:04.623 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libradosstriper1. 2024-09-16T14:28:04.650 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../022-libradosstriper1_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:04.690 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:04.830 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-requests. 2024-09-16T14:28:04.856 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T14:28:04.870 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T14:28:04.897 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T14:28:04.905 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:28:04.937 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T14:28:05.052 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-common. 2024-09-16T14:28:05.078 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../023-ceph-common_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:05.110 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:05.217 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T14:28:05.243 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T14:28:05.248 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T14:28:05.275 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T14:28:05.283 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:05.314 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:28:05.570 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T14:28:05.596 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:05.628 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:05.694 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T14:28:05.721 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T14:28:05.761 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:06.017 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T14:28:06.043 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:06.071 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-idna. 2024-09-16T14:28:06.083 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:06.098 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T14:28:06.129 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:06.394 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T14:28:06.421 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T14:28:06.433 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T14:28:06.460 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T14:28:06.460 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:06.466 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-base. 2024-09-16T14:28:06.493 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../024-ceph-base_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:06.499 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:28:06.542 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:06.739 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T14:28:06.766 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T14:28:06.805 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T14:28:06.811 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-requests. 2024-09-16T14:28:06.838 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T14:28:06.877 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:28:07.100 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T14:28:07.127 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:07.129 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-jaraco.functools. 2024-09-16T14:28:07.156 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../025-python3-jaraco.functools_3.4.0-2_all.deb ... 2024-09-16T14:28:07.158 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:07.195 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:28:07.205 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T14:28:07.232 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T14:28:07.271 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:07.465 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-cheroot. 2024-09-16T14:28:07.481 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../026-python3-cheroot_8.5.2+ds1-1ubuntu3.1_all.deb ... 2024-09-16T14:28:07.515 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:28:07.545 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T14:28:07.572 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:07.611 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:07.708 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T14:28:07.735 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:07.775 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:07.784 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-jaraco.classes. 2024-09-16T14:28:07.800 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../027-python3-jaraco.classes_3.2.1-3_all.deb ... 2024-09-16T14:28:07.834 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:28:08.121 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T14:28:08.137 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-jaraco.text. 2024-09-16T14:28:08.148 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:08.164 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../028-python3-jaraco.text_3.6.0-2_all.deb ... 2024-09-16T14:28:08.187 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:08.204 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:28:08.232 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T14:28:08.259 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:08.298 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:08.448 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T14:28:08.475 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T14:28:08.499 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-jaraco.collections. 2024-09-16T14:28:08.514 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:08.525 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../029-python3-jaraco.collections_3.4.0-2_all.deb ... 2024-09-16T14:28:08.557 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:28:08.826 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T14:28:08.853 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T14:28:08.860 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-tempora. 2024-09-16T14:28:08.886 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../030-python3-tempora_4.1.2-1_all.deb ... 2024-09-16T14:28:08.892 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T14:28:08.926 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-tempora (4.1.2-1) ... 2024-09-16T14:28:09.229 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-portend. 2024-09-16T14:28:09.237 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T14:28:09.256 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../031-python3-portend_3.0.0-1_all.deb ... 2024-09-16T14:28:09.264 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:09.296 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-portend (3.0.0-1) ... 2024-09-16T14:28:09.303 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:09.344 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph. 2024-09-16T14:28:09.371 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../060-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:09.410 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:09.574 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-zc.lockfile. 2024-09-16T14:28:09.601 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../032-python3-zc.lockfile_2.0-1_all.deb ... 2024-09-16T14:28:09.632 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-zc.lockfile (2.0-1) ... 2024-09-16T14:28:09.673 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T14:28:09.700 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:09.730 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T14:28:09.739 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:09.756 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:09.805 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:09.910 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-cherrypy3. 2024-09-16T14:28:09.937 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../033-python3-cherrypy3_18.6.1-4_all.deb ... 2024-09-16T14:28:09.976 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:28:10.302 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T14:28:10.329 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:10.330 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-natsort. 2024-09-16T14:28:10.357 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../034-python3-natsort_8.0.2-1_all.deb ... 2024-09-16T14:28:10.368 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:10.397 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-natsort (8.0.2-1) ... 2024-09-16T14:28:10.692 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-logutils. 2024-09-16T14:28:10.718 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../035-python3-logutils_0.3.3-8_all.deb ... 2024-09-16T14:28:10.758 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-logutils (0.3.3-8) ... 2024-09-16T14:28:10.992 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T14:28:11.019 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:11.059 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:11.181 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-markupsafe. 2024-09-16T14:28:11.207 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../036-python3-markupsafe_2.0.1-2build1_amd64.deb ... 2024-09-16T14:28:11.244 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:28:11.420 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package cephadm. 2024-09-16T14:28:11.447 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../063-cephadm_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:11.487 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:11.573 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-mako. 2024-09-16T14:28:11.599 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../037-python3-mako_1.1.3+ds1-2ubuntu0.1_all.deb ... 2024-09-16T14:28:11.639 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:28:11.765 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T14:28:11.791 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T14:28:11.831 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:12.135 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T14:28:12.146 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph. 2024-09-16T14:28:12.150 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:12.173 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../060-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:12.192 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:12.213 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:12.499 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T14:28:12.526 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:12.565 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:12.718 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-simplegeneric. 2024-09-16T14:28:12.745 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../038-python3-simplegeneric_0.8.1-3_all.deb ... 2024-09-16T14:28:12.784 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:28:12.910 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T14:28:12.937 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:12.977 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:13.062 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-singledispatch. 2024-09-16T14:28:13.089 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../039-python3-singledispatch_3.4.0.3-3_all.deb ... 2024-09-16T14:28:13.129 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:28:13.356 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package cephadm. 2024-09-16T14:28:13.382 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../063-cephadm_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:13.407 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-babel. 2024-09-16T14:28:13.421 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:13.423 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-webob. 2024-09-16T14:28:13.433 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:13.450 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../040-python3-webob_1%3a1.8.6-1.1ubuntu0.1_all.deb ... 2024-09-16T14:28:13.465 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:13.490 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:28:13.724 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T14:28:13.751 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T14:28:13.751 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T14:28:13.778 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T14:28:13.799 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:13.818 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:28:13.885 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-waitress. 2024-09-16T14:28:13.912 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../041-python3-waitress_1.4.4-1.1ubuntu1_all.deb ... 2024-09-16T14:28:13.963 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:14.110 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T14:28:14.137 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:14.146 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T14:28:14.173 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:14.176 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:14.221 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:14.304 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-tempita. 2024-09-16T14:28:14.331 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../042-python3-tempita_0.5.2-6ubuntu1_all.deb ... 2024-09-16T14:28:14.371 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:14.567 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T14:28:14.593 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T14:28:14.633 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:28:14.699 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-paste. 2024-09-16T14:28:14.726 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../043-python3-paste_3.5.0+dfsg1-1_all.deb ... 2024-09-16T14:28:14.765 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:14.945 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-py. 2024-09-16T14:28:14.971 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-16T14:28:15.011 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T14:28:15.115 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-babel. 2024-09-16T14:28:15.127 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python-pastedeploy-tpl. 2024-09-16T14:28:15.142 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:15.154 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../044-python-pastedeploy-tpl_2.1.1-1_all.deb ... 2024-09-16T14:28:15.181 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:15.193 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:15.349 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T14:28:15.375 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T14:28:15.415 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:15.476 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T14:28:15.503 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T14:28:15.505 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pastedeploy. 2024-09-16T14:28:15.532 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../045-python3-pastedeploy_2.1.1-1_all.deb ... 2024-09-16T14:28:15.542 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:28:15.571 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:28:15.718 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-toml. 2024-09-16T14:28:15.745 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-16T14:28:15.784 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T14:28:15.904 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T14:28:15.908 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-webtest. 2024-09-16T14:28:15.931 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:15.935 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../046-python3-webtest_2.0.35-1_all.deb ... 2024-09-16T14:28:15.970 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:15.974 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-webtest (2.0.35-1) ... 2024-09-16T14:28:16.088 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T14:28:16.115 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T14:28:16.154 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:28:16.274 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T14:28:16.286 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pecan. 2024-09-16T14:28:16.300 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T14:28:16.313 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../047-python3-pecan_1.3.3-4ubuntu2_all.deb ... 2024-09-16T14:28:16.332 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:28:16.352 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:28:16.516 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T14:28:16.543 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T14:28:16.583 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:16.635 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-py. 2024-09-16T14:28:16.662 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-16T14:28:16.701 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T14:28:16.816 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-certifi. 2024-09-16T14:28:16.843 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../048-python3-certifi_2020.6.20-1_all.deb ... 2024-09-16T14:28:16.844 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-routes. 2024-09-16T14:28:16.860 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T14:28:16.882 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:16.894 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:17.047 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T14:28:17.074 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T14:28:17.113 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:17.185 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-idna. 2024-09-16T14:28:17.206 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T14:28:17.212 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../049-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-16T14:28:17.233 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:17.243 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:17.264 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:17.416 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-toml. 2024-09-16T14:28:17.442 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-16T14:28:17.482 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T14:28:17.513 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-urllib3. 2024-09-16T14:28:17.540 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../050-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-16T14:28:17.580 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:28:17.900 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-requests. 2024-09-16T14:28:17.927 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../051-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-16T14:28:17.966 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:28:18.011 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T14:28:18.039 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T14:28:18.085 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:28:18.278 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-werkzeug. 2024-09-16T14:28:18.304 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../052-python3-werkzeug_2.0.2+dfsg1-1ubuntu0.22.04.2_all.deb ... 2024-09-16T14:28:18.352 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:18.413 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T14:28:18.440 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T14:28:18.462 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T14:28:18.480 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:18.489 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T14:28:18.528 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:18.639 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr-modules-core. 2024-09-16T14:28:18.666 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../053-ceph-mgr-modules-core_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:18.705 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:18.782 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-routes. 2024-09-16T14:28:18.809 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T14:28:18.849 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:19.057 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T14:28:19.084 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T14:28:19.085 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libsqlite3-mod-ceph. 2024-09-16T14:28:19.112 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../054-libsqlite3-mod-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:19.123 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:19.152 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:19.177 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T14:28:19.204 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:19.244 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:19.472 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-bcrypt. 2024-09-16T14:28:19.494 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T14:28:19.499 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../055-python3-bcrypt_3.2.0-1build1_amd64.deb ... 2024-09-16T14:28:19.521 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T14:28:19.538 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:19.560 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:19.824 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-openssl. 2024-09-16T14:28:19.840 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../056-python3-openssl_21.0.0-1_all.deb ... 2024-09-16T14:28:19.872 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T14:28:19.874 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-openssl (21.0.0-1) ... 2024-09-16T14:28:19.899 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T14:28:19.938 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:28:20.136 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr. 2024-09-16T14:28:20.163 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../057-ceph-mgr_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:20.202 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:20.516 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T14:28:20.543 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T14:28:20.555 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mon. 2024-09-16T14:28:20.582 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:20.583 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../058-ceph-mon_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:20.614 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:20.614 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T14:28:20.642 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:20.680 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:21.036 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T14:28:21.063 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T14:28:21.094 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:21.367 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-osd. 2024-09-16T14:28:21.394 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../059-ceph-osd_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:21.434 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:21.464 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T14:28:21.491 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T14:28:21.530 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:21.684 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T14:28:21.711 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T14:28:21.752 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:21.834 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T14:28:21.861 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T14:28:21.900 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:28:22.121 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T14:28:22.148 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T14:28:22.188 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:28:22.527 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T14:28:22.554 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T14:28:22.593 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:28:22.599 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T14:28:22.627 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:22.629 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph. 2024-09-16T14:28:22.645 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../060-ceph_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:22.674 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:22.687 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:22.905 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T14:28:22.932 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-16T14:28:22.957 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-fuse. 2024-09-16T14:28:22.971 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T14:28:22.973 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../061-ceph-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:23.007 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:23.300 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T14:28:23.327 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T14:28:23.366 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T14:28:23.377 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mds. 2024-09-16T14:28:23.404 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../062-ceph-mds_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:23.443 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:23.560 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T14:28:23.576 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T14:28:23.619 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:23.863 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package cephadm. 2024-09-16T14:28:23.890 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../063-cephadm_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:23.920 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T14:28:23.929 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:23.948 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T14:28:23.986 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:28:24.015 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T14:28:24.042 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T14:28:24.081 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:28:24.208 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-asyncssh. 2024-09-16T14:28:24.235 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../064-python3-asyncssh_2.5.0-1_all.deb ... 2024-09-16T14:28:24.266 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:24.298 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T14:28:24.325 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T14:28:24.364 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T14:28:24.427 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T14:28:24.454 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T14:28:24.493 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:28:24.585 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python-babel-localedata. 2024-09-16T14:28:24.601 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../065-python-babel-localedata_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:24.644 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:24.676 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T14:28:24.704 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T14:28:24.743 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:28:24.804 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T14:28:24.832 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-16T14:28:24.870 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T14:28:25.132 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T14:28:25.148 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T14:28:25.182 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T14:28:25.365 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T14:28:25.381 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:25.423 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:25.486 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T14:28:25.513 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T14:28:25.552 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:28:25.699 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-babel. 2024-09-16T14:28:25.727 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../066-python3-babel_2.8.0+dfsg.1-7_all.deb ... 2024-09-16T14:28:25.743 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T14:28:25.766 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:25.770 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T14:28:25.801 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:28:25.864 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T14:28:25.890 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T14:28:25.930 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T14:28:26.086 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-jinja2. 2024-09-16T14:28:26.113 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../067-python3-jinja2_3.0.3-1ubuntu0.2_all.deb ... 2024-09-16T14:28:26.129 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T14:28:26.152 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:28:26.157 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:26.196 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:28:26.241 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T14:28:26.269 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T14:28:26.308 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:28:26.449 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package jq. 2024-09-16T14:28:26.472 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr-cephadm. 2024-09-16T14:28:26.476 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:26.500 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../068-ceph-mgr-cephadm_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:26.523 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T14:28:26.539 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:26.785 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package socat. 2024-09-16T14:28:26.812 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T14:28:26.817 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pluggy. 2024-09-16T14:28:26.830 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../069-python3-pluggy_0.13.0-7.1_all.deb ... 2024-09-16T14:28:26.851 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:26.884 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:28:26.955 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T14:28:26.971 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:27.013 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:27.129 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T14:28:27.145 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T14:28:27.179 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:28:27.195 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-py. 2024-09-16T14:28:27.223 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../070-python3-py_1.10.0-1_all.deb ... 2024-09-16T14:28:27.262 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-py (1.10.0-1) ... 2024-09-16T14:28:27.307 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T14:28:27.335 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T14:28:27.373 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:28:27.534 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-test. 2024-09-16T14:28:27.561 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../096-ceph-test_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:27.590 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-iniconfig. 2024-09-16T14:28:27.600 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:27.618 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../071-python3-iniconfig_1.1.1-2_all.deb ... 2024-09-16T14:28:27.719 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T14:28:27.746 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:27.785 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:28:27.823 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:28.071 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package jq. 2024-09-16T14:28:28.098 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:28.137 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T14:28:28.160 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-toml. 2024-09-16T14:28:28.187 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../072-python3-toml_0.10.2-1_all.deb ... 2024-09-16T14:28:28.226 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-toml (0.10.2-1) ... 2024-09-16T14:28:28.471 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pytest. 2024-09-16T14:28:28.487 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../073-python3-pytest_6.2.5-1ubuntu2_all.deb ... 2024-09-16T14:28:28.521 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:28:28.590 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package socat. 2024-09-16T14:28:28.605 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T14:28:28.639 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:28.858 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-repoze.lru. 2024-09-16T14:28:28.885 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../074-python3-repoze.lru_0.7-2_all.deb ... 2024-09-16T14:28:28.893 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T14:28:28.909 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T14:28:28.925 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:28.942 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:28:29.186 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-routes. 2024-09-16T14:28:29.202 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../075-python3-routes_2.5.1-1ubuntu1_all.deb ... 2024-09-16T14:28:29.236 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:29.271 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-test. 2024-09-16T14:28:29.287 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../096-ceph-test_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:29.321 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:29.487 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T14:28:29.515 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:29.545 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:29.548 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr-dashboard. 2024-09-16T14:28:29.575 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../076-ceph-mgr-dashboard_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:29.614 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:29.833 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T14:28:29.848 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:29.882 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:30.336 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T14:28:30.363 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T14:28:30.444 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:30.774 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T14:28:30.790 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T14:28:30.832 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:30.936 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-sklearn-lib:amd64. 2024-09-16T14:28:30.953 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../077-python3-sklearn-lib_0.23.2-5ubuntu6_amd64.deb ... 2024-09-16T14:28:30.994 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:31.167 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T14:28:31.180 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:31.216 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:31.235 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T14:28:31.263 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T14:28:31.301 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T14:28:31.465 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-joblib. 2024-09-16T14:28:31.479 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T14:28:31.492 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:31.492 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../078-python3-joblib_0.17.0-4ubuntu1_all.deb ... 2024-09-16T14:28:31.520 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:31.531 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:31.622 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T14:28:31.649 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T14:28:31.688 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:31.890 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T14:28:31.894 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-threadpoolctl. 2024-09-16T14:28:31.917 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T14:28:31.921 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../079-python3-threadpoolctl_3.1.0-1_all.deb ... 2024-09-16T14:28:31.956 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:31.960 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:32.033 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T14:28:32.061 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T14:28:32.100 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:32.238 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-sklearn. 2024-09-16T14:28:32.265 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../080-python3-sklearn_0.23.2-5ubuntu6_all.deb ... 2024-09-16T14:28:32.296 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:28:32.320 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T14:28:32.347 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T14:28:32.386 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:32.587 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T14:28:32.614 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T14:28:32.653 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:32.839 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T14:28:32.867 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T14:28:32.905 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T14:28:32.964 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T14:28:32.992 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T14:28:33.031 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:33.205 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr-diskprediction-local. 2024-09-16T14:28:33.226 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T14:28:33.233 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../081-ceph-mgr-diskprediction-local_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:33.254 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T14:28:33.280 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:33.292 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:33.309 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T14:28:33.336 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T14:28:33.375 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:33.637 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T14:28:33.664 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T14:28:33.703 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:34.165 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T14:28:34.193 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T14:28:34.208 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-cachetools. 2024-09-16T14:28:34.231 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:34.236 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../082-python3-cachetools_5.0.0-1_all.deb ... 2024-09-16T14:28:34.274 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:34.363 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package radosgw. 2024-09-16T14:28:34.390 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../107-radosgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:34.420 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:34.545 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T14:28:34.572 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T14:28:34.611 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:34.629 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pyasn1. 2024-09-16T14:28:34.645 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../083-python3-pyasn1_0.4.8-1_all.deb ... 2024-09-16T14:28:34.679 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:28:34.888 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T14:28:34.904 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T14:28:34.947 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:35.008 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pyasn1-modules. 2024-09-16T14:28:35.035 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../084-python3-pyasn1-modules_0.2.1-1_all.deb ... 2024-09-16T14:28:35.091 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:28:35.174 INFO:teuthology.orchestra.run.smithi162.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T14:28:35.201 INFO:teuthology.orchestra.run.smithi162.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:35.240 INFO:teuthology.orchestra.run.smithi162.stdout:Unpacking rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:35.402 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-rsa. 2024-09-16T14:28:35.430 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../085-python3-rsa_4.8-1_all.deb ... 2024-09-16T14:28:35.469 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-rsa (4.8-1) ... 2024-09-16T14:28:35.544 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:35.667 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package radosgw. 2024-09-16T14:28:35.695 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../107-radosgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:35.733 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:35.789 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-google-auth. 2024-09-16T14:28:35.803 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:28:35.817 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../086-python3-google-auth_1.5.1-3_all.deb ... 2024-09-16T14:28:35.858 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-google-auth (1.5.1-3) ... 2024-09-16T14:28:35.929 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:36.170 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-requests-oauthlib. 2024-09-16T14:28:36.186 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T14:28:36.197 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../087-python3-requests-oauthlib_1.3.0+ds-0.1_all.deb ... 2024-09-16T14:28:36.227 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:28:36.470 INFO:teuthology.orchestra.run.smithi139.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T14:28:36.486 INFO:teuthology.orchestra.run.smithi139.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:36.505 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-websocket. 2024-09-16T14:28:36.519 INFO:teuthology.orchestra.run.smithi139.stdout:Unpacking rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:36.526 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T14:28:36.533 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../088-python3-websocket_1.2.3-1_all.deb ... 2024-09-16T14:28:36.563 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-websocket (1.2.3-1) ... 2024-09-16T14:28:36.790 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:36.859 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-kubernetes. 2024-09-16T14:28:36.886 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../089-python3-kubernetes_12.0.1-1ubuntu1_all.deb ... 2024-09-16T14:28:36.917 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:28:36.942 INFO:teuthology.orchestra.run.smithi162.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T14:28:37.014 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:37.049 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:28:37.158 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:37.400 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T14:28:37.531 INFO:teuthology.orchestra.run.smithi162.stdout:Adding system user cephadm....done 2024-09-16T14:28:37.539 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-mgr-k8sevents. 2024-09-16T14:28:37.567 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../090-ceph-mgr-k8sevents_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:37.605 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:37.687 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:37.761 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T14:28:37.933 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libonig5:amd64. 2024-09-16T14:28:37.961 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../091-libonig5_6.9.7.1-2build1_amd64.deb ... 2024-09-16T14:28:37.988 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:28:38.008 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:28:38.177 INFO:teuthology.orchestra.run.smithi139.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T14:28:38.252 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:38.256 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:38.286 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libjq1:amd64. 2024-09-16T14:28:38.314 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../092-libjq1_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:38.344 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:28:38.382 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:28:38.614 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package jq. 2024-09-16T14:28:38.617 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:38.641 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../093-jq_1.6-2.1ubuntu3_amd64.deb ... 2024-09-16T14:28:38.680 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking jq (1.6-2.1ubuntu3) ... 2024-09-16T14:28:38.751 INFO:teuthology.orchestra.run.smithi139.stdout:Adding system user cephadm....done 2024-09-16T14:28:38.865 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:38.876 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:28:38.932 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package socat. 2024-09-16T14:28:38.949 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../094-socat_1.7.4.1-3ubuntu4_amd64.deb ... 2024-09-16T14:28:38.990 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:39.002 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T14:28:39.125 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:28:39.312 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:39.361 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package xmlstarlet. 2024-09-16T14:28:39.368 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:39.389 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../095-xmlstarlet_1.6.1-2.1_amd64.deb ... 2024-09-16T14:28:39.427 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:28:39.477 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:28:39.672 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:39.720 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:39.756 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-test. 2024-09-16T14:28:39.774 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../096-ceph-test_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:39.806 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:39.907 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T14:28:39.971 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:28:40.097 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T14:28:40.160 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:40.415 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:40.417 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:40.685 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:40.767 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:40.936 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:41.010 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T14:28:41.195 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:41.286 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:41.438 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:28:41.554 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:41.715 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:28:41.744 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package ceph-volume. 2024-09-16T14:28:41.771 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../097-ceph-volume_18.2.4-845-ge4e227b3-1jammy_all.deb ... 2024-09-16T14:28:41.805 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:41.810 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:41.815 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:42.055 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:42.097 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package libcephfs-dev. 2024-09-16T14:28:42.125 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../098-libcephfs-dev_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:42.164 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:42.167 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:42.293 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T14:28:42.315 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:42.441 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:28:42.560 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:42.584 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package nvme-cli. 2024-09-16T14:28:42.612 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../099-nvme-cli_1.16-3ubuntu0.3_amd64.deb ... 2024-09-16T14:28:42.650 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:42.734 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:28:42.820 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:42.860 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:43.013 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python-asyncssh-doc. 2024-09-16T14:28:43.030 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../100-python-asyncssh-doc_2.5.0-1_all.deb ... 2024-09-16T14:28:43.071 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:43.154 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:43.228 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:43.354 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T14:28:43.622 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:43.650 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pastescript. 2024-09-16T14:28:43.678 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../101-python3-pastescript_2.0.2-4_all.deb ... 2024-09-16T14:28:43.782 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pastescript (2.0.2-4) ... 2024-09-16T14:28:43.798 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:44.032 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:44.037 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:44.103 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-psutil. 2024-09-16T14:28:44.131 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../102-python3-psutil_5.9.0-1build1_amd64.deb ... 2024-09-16T14:28:44.158 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:44.169 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:44.284 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:28:44.524 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:44.530 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pygments. 2024-09-16T14:28:44.559 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../103-python3-pygments_2.11.2+dfsg-2_all.deb ... 2024-09-16T14:28:44.585 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:44.597 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:44.970 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:45.110 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-pyinotify. 2024-09-16T14:28:45.138 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../104-python3-pyinotify_0.9.6-1.3_all.deb ... 2024-09-16T14:28:45.176 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:45.184 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:45.221 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:45.427 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:45.445 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package python3-simplejson. 2024-09-16T14:28:45.474 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../105-python3-simplejson_3.17.6-1build1_amd64.deb ... 2024-09-16T14:28:45.503 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:45.553 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:45.598 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:28:45.679 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:28:45.748 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package qttranslations5-l10n. 2024-09-16T14:28:45.776 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../106-qttranslations5-l10n_5.15.3-1_all.deb ... 2024-09-16T14:28:45.814 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:45.865 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:45.971 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:46.242 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:28:46.356 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:46.502 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:46.577 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package radosgw. 2024-09-16T14:28:46.605 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../107-radosgw_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:46.607 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:46.627 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:46.643 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:46.929 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:46.975 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:28:47.255 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:28:47.260 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:47.496 INFO:teuthology.orchestra.run.smithi019.stdout:Selecting previously unselected package rbd-fuse. 2024-09-16T14:28:47.513 INFO:teuthology.orchestra.run.smithi019.stdout:Preparing to unpack .../108-rbd-fuse_18.2.4-845-ge4e227b3-1jammy_amd64.deb ... 2024-09-16T14:28:47.554 INFO:teuthology.orchestra.run.smithi019.stdout:Unpacking rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:47.578 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:28:47.837 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:47.859 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-iniconfig (1.1.1-2) ... 2024-09-16T14:28:47.963 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:48.109 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libdouble-conversion3:amd64 (3.1.7-4) ... 2024-09-16T14:28:48.243 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up nvme-cli (1.16-3ubuntu0.3) ... 2024-09-16T14:28:48.264 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:48.419 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:48.530 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service -> /lib/systemd/system/nvmefc-boot-connections.service. 2024-09-16T14:28:48.553 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T14:28:48.599 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:28:48.813 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:28:48.893 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmf-autoconnect.service -> /lib/systemd/system/nvmf-autoconnect.service. 2024-09-16T14:28:48.914 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:28:49.015 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:28:49.299 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:28:49.315 INFO:teuthology.orchestra.run.smithi019.stdout:nvmf-connect.target is a disabled or a static unit, not starting it. 2024-09-16T14:28:49.378 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:49.550 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T14:28:49.771 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:49.801 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:49.905 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T14:28:49.927 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:28:50.052 INFO:teuthology.orchestra.run.smithi019.stdout:Adding system user cephadm....done 2024-09-16T14:28:50.053 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:28:50.164 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:28:50.201 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-waitress (1.4.4-1.1ubuntu1) ... 2024-09-16T14:28:50.282 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:28:50.371 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:28:50.383 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:28:50.494 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-jaraco.classes (3.2.1-3) ... 2024-09-16T14:28:50.614 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T14:28:50.659 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:28:50.746 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python-asyncssh-doc (2.5.0-1) ... 2024-09-16T14:28:50.857 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T14:28:50.871 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-jaraco.functools (3.4.0-2) ... 2024-09-16T14:28:50.894 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T14:28:51.117 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:28:51.153 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:51.223 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-repoze.lru (0.7-2) ... 2024-09-16T14:28:51.279 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:28:51.368 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T14:28:51.405 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:28:51.563 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up liboath0:amd64 (2.6.7-3build1) ... 2024-09-16T14:28:51.627 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:28:51.706 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:28:51.742 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-py (1.10.0-1) ... 2024-09-16T14:28:51.753 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T14:28:51.949 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T14:28:52.037 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:28:52.052 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-joblib (0.17.0-4ubuntu1) ... 2024-09-16T14:28:52.139 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:28:52.209 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T14:28:52.415 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:28:52.428 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-cachetools (5.0.0-1) ... 2024-09-16T14:28:52.443 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:28:52.671 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-openssl (21.0.0-1) ... 2024-09-16T14:28:52.702 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T14:28:52.707 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:28:52.956 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-bcrypt (3.2.0-1build1) ... 2024-09-16T14:28:52.958 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:52.962 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:28:53.088 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T14:28:53.215 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pyinotify (0.9.6-1.3) ... 2024-09-16T14:28:53.364 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:28:53.460 INFO:teuthology.orchestra.run.smithi162.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T14:28:53.474 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-threadpoolctl (3.1.0-1) ... 2024-09-16T14:28:53.482 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:28:53.703 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:28:53.734 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-ceph-argparse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:53.758 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:28:53.829 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:28:54.022 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-sklearn-lib:amd64 (0.23.2-5ubuntu6) ... 2024-09-16T14:28:54.084 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:28:54.214 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:28:54.343 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:54.369 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-markupsafe (2.0.1-2build1) ... 2024-09-16T14:28:54.498 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T14:28:54.620 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ... 2024-09-16T14:28:54.730 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-psutil (5.9.0-1build1) ... 2024-09-16T14:28:54.774 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:54.788 INFO:teuthology.orchestra.run.smithi139.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T14:28:54.900 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:28:55.038 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:28:55.081 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python-babel-localedata (2.8.0+dfsg.1-7) ... 2024-09-16T14:28:55.164 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:28:55.207 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-natsort (8.0.2-1) ... 2024-09-16T14:28:55.226 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:28:55.474 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-routes (2.5.1-1ubuntu1) ... 2024-09-16T14:28:55.527 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:28:55.540 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:28:55.751 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-simplejson (3.17.6-1build1) ... 2024-09-16T14:28:55.791 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T14:28:55.804 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T14:28:55.930 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T14:28:56.018 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:28:56.094 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pygments (2.11.2+dfsg-2) ... 2024-09-16T14:28:56.135 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:28:56.189 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T14:28:56.449 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:28:56.453 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:28:56.708 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:28:56.771 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:28:56.804 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-tempita (0.5.2-6ubuntu1) ... 2024-09-16T14:28:57.047 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T14:28:57.047 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python-pastedeploy-tpl (2.1.1-1) ... 2024-09-16T14:28:57.093 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T14:28:57.148 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up qttranslations5-l10n (5.15.3-1) ... 2024-09-16T14:28:57.173 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T14:28:57.274 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-wcwidth (0.2.5+dfsg1-1) ... 2024-09-16T14:28:57.377 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:28:57.441 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T14:28:57.575 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-asyncssh (2.5.0-1) ... 2024-09-16T14:28:57.708 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:28:57.721 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:28:57.822 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:57.940 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:57.968 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:28:57.984 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-16T14:28:58.066 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:58.192 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:58.236 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-paste (3.5.0+dfsg1-1) ... 2024-09-16T14:28:58.318 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:58.344 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T14:28:58.555 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T14:28:58.637 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-cheroot (8.5.2+ds1-1ubuntu3.1) ... 2024-09-16T14:28:58.637 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:28:58.823 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:58.921 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-werkzeug (2.0.2+dfsg1-1ubuntu0.22.04.2) ... 2024-09-16T14:28:58.949 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:58.972 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:28:59.075 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.098 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.224 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.256 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-jaraco.text (3.6.0-2) ... 2024-09-16T14:28:59.289 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:28:59.289 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:28:59.351 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.477 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.515 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up socat (1.7.4.1-3ubuntu4) ... 2024-09-16T14:28:59.642 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.811 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:28:59.943 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-16T14:28:59.985 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:00.022 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T14:29:00.136 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:00.262 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:29:00.277 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-sklearn (0.23.2-5ubuntu6) ... 2024-09-16T14:29:00.290 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:00.391 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:00.501 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:00.713 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:29:00.713 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:29:01.211 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.337 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.408 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.462 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:29:01.483 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libqt5core5a:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:29:01.517 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.617 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-toml (0.10.2-1) ... 2024-09-16T14:29:01.618 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.736 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.862 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:01.885 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up librdkafka1:amd64 (1.8.0-1build1) ... 2024-09-16T14:29:02.011 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up xmlstarlet (1.6.1-2.1) ... 2024-09-16T14:29:02.137 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-16T14:29:02.414 INFO:teuthology.orchestra.run.smithi162.stdout:Adding group ceph....done 2024-09-16T14:29:02.438 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pluggy (0.13.0-7.1) ... 2024-09-16T14:29:02.675 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:02.681 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-zc.lockfile (2.0-1) ... 2024-09-16T14:29:02.776 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:02.790 INFO:teuthology.orchestra.run.smithi162.stdout:Adding system user ceph....done 2024-09-16T14:29:02.894 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:02.924 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libqt5dbus5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:29:02.925 INFO:teuthology.orchestra.run.smithi162.stdout:Setting system user ceph properties....done 2024-09-16T14:29:02.936 INFO:teuthology.orchestra.run.smithi162.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T14:29:03.019 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:03.058 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libfmt8:amd64 (8.1.1+ds1-2) ... 2024-09-16T14:29:03.068 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T14:29:03.184 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pyasn1 (0.4.8-1) ... 2024-09-16T14:29:03.212 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:03.393 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T14:29:03.494 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-singledispatch (3.4.0.3-3) ... 2024-09-16T14:29:03.754 INFO:teuthology.orchestra.run.smithi139.stdout:Adding group ceph....done 2024-09-16T14:29:03.770 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-logutils (0.3.3-8) ... 2024-09-16T14:29:03.830 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:03.956 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:04.021 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-tempora (4.1.2-1) ... 2024-09-16T14:29:04.148 INFO:teuthology.orchestra.run.smithi139.stdout:Adding system user ceph....done 2024-09-16T14:29:04.281 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-simplegeneric (0.8.1-3) ... 2024-09-16T14:29:04.325 INFO:teuthology.orchestra.run.smithi139.stdout:Setting system user ceph properties....done 2024-09-16T14:29:04.339 INFO:teuthology.orchestra.run.smithi139.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T14:29:04.419 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:04.419 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:04.470 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T14:29:04.648 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-prettytable (2.5.0-2) ... 2024-09-16T14:29:04.789 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T14:29:04.874 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:04.916 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up liblttng-ust1:amd64 (2.13.1-1ubuntu1) ... 2024-09-16T14:29:05.050 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-websocket (1.2.3-1) ... 2024-09-16T14:29:05.232 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T14:29:05.271 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:05.335 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libonig5:amd64 (6.9.7.1-2build1) ... 2024-09-16T14:29:05.397 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:05.461 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-mako (1.1.3+ds1-2ubuntu0.1) ... 2024-09-16T14:29:05.676 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:05.754 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-webob (1:1.8.6-1.1ubuntu0.1) ... 2024-09-16T14:29:05.850 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:05.851 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:05.899 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:05.899 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:06.046 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-jaraco.collections (3.4.0-2) ... 2024-09-16T14:29:06.289 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-babel (2.8.0+dfsg.1-7) ... 2024-09-16T14:29:06.324 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:06.344 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:06.547 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:06.547 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:06.655 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T14:29:06.667 INFO:teuthology.orchestra.run.smithi019.stdout:update-alternatives: using /usr/bin/pybabel-python3 to provide /usr/bin/pybabel (pybabel) in auto mode 2024-09-16T14:29:06.934 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libjq1:amd64 (1.6-2.1ubuntu3) ... 2024-09-16T14:29:06.996 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:07.060 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pytest (6.2.5-1ubuntu2) ... 2024-09-16T14:29:07.117 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:07.264 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:07.264 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:07.354 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:07.355 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:07.461 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pastedeploy (2.1.1-1) ... 2024-09-16T14:29:07.721 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-portend (3.0.0-1) ... 2024-09-16T14:29:07.722 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:07.849 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:07.852 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:07.963 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libqt5network5:amd64 (5.15.3+dfsg-2ubuntu0.2) ... 2024-09-16T14:29:07.991 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:08.089 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-jinja2 (3.0.3-1ubuntu0.2) ... 2024-09-16T14:29:08.091 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:08.091 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:08.193 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:08.194 INFO:teuthology.orchestra.run.smithi162.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:08.415 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pyasn1-modules (0.2.1-1) ... 2024-09-16T14:29:08.626 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:08.679 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:08.724 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-16T14:29:08.768 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:08.886 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:08.970 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:08.970 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:09.009 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up jq (1.6-2.1ubuntu3) ... 2024-09-16T14:29:09.029 INFO:teuthology.orchestra.run.smithi162.stdout:Setting up ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:09.135 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-rsa (4.8-1) ... 2024-09-16T14:29:09.357 INFO:teuthology.orchestra.run.smithi162.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T14:29:09.411 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-webtest (2.0.35-1) ... 2024-09-16T14:29:09.439 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:09.540 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:09.666 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:09.687 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-requests-oauthlib (1.3.0+ds-0.1) ... 2024-09-16T14:29:09.886 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:09.887 INFO:teuthology.orchestra.run.smithi139.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:09.938 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-cherrypy3 (18.6.1-4) ... 2024-09-16T14:29:10.340 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pastescript (2.0.2-4) ... 2024-09-16T14:29:10.458 INFO:teuthology.orchestra.run.smithi162.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T14:29:10.474 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:10.622 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:10.658 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-pecan (1.3.3-4ubuntu2) ... 2024-09-16T14:29:10.740 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:10.874 INFO:teuthology.orchestra.run.smithi139.stdout:Setting up ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:10.959 INFO:teuthology.orchestra.run.smithi162.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T14:29:10.966 DEBUG:teuthology.parallel:result is None 2024-09-16T14:29:11.010 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libthrift-0.16.0:amd64 (0.16.0-2) ... 2024-09-16T14:29:11.136 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up librados2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:11.227 INFO:teuthology.orchestra.run.smithi139.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T14:29:11.262 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up librgw2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:11.379 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libsqlite3-mod-ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:11.480 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libcephfs2 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:11.581 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libradosstriper1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:11.785 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-google-auth (1.5.1-3) ... 2024-09-16T14:29:12.086 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up librbd1 (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:12.212 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr-modules-core (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:12.322 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:12.328 INFO:teuthology.orchestra.run.smithi139.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T14:29:12.521 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/remote-fs.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:29:12.521 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-fuse.target -> /lib/systemd/system/ceph-fuse.target. 2024-09-16T14:29:12.794 INFO:teuthology.orchestra.run.smithi139.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T14:29:12.799 DEBUG:teuthology.parallel:result is None 2024-09-16T14:29:12.999 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up libcephfs-dev (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:13.124 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-rados (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:13.259 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-kubernetes (12.0.1-1ubuntu1) ... 2024-09-16T14:29:14.555 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-rbd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:14.656 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up rbd-fuse (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:14.757 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-rgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:14.883 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up python3-cephfs (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:15.009 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-common (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:15.552 INFO:teuthology.orchestra.run.smithi019.stdout:Adding group ceph....done 2024-09-16T14:29:16.012 INFO:teuthology.orchestra.run.smithi019.stdout:Adding system user ceph....done 2024-09-16T14:29:16.181 INFO:teuthology.orchestra.run.smithi019.stdout:Setting system user ceph properties....done 2024-09-16T14:29:16.201 INFO:teuthology.orchestra.run.smithi019.stdout:chown: cannot access '/var/log/ceph/*.log*': No such file or directory 2024-09-16T14:29:16.346 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /lib/systemd/system/ceph.target. 2024-09-16T14:29:16.715 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/rbdmap.service -> /lib/systemd/system/rbdmap.service. 2024-09-16T14:29:17.219 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-test (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:17.320 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up radosgw (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:17.781 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:17.781 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target -> /lib/systemd/system/ceph-radosgw.target. 2024-09-16T14:29:18.246 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-base (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:18.600 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service -> /lib/systemd/system/ceph-crash.service. 2024-09-16T14:29:19.065 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mds (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:19.328 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:19.328 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target -> /lib/systemd/system/ceph-mds.target. 2024-09-16T14:29:19.809 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:20.045 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:20.045 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target -> /lib/systemd/system/ceph-mgr.target. 2024-09-16T14:29:20.527 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-osd (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:20.784 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:20.784 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target -> /lib/systemd/system/ceph-osd.target. 2024-09-16T14:29:21.297 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr-k8sevents (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:21.404 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr-diskprediction-local (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:21.572 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mon (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:21.789 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:21.789 INFO:teuthology.orchestra.run.smithi019.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target -> /lib/systemd/system/ceph-mon.target. 2024-09-16T14:29:22.273 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr-cephadm (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:22.424 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:22.550 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-mgr-dashboard (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:22.701 INFO:teuthology.orchestra.run.smithi019.stdout:Setting up ceph-volume (18.2.4-845-ge4e227b3-1jammy) ... 2024-09-16T14:29:23.054 INFO:teuthology.orchestra.run.smithi019.stdout:Processing triggers for man-db (2.10.2-1) ... 2024-09-16T14:29:24.105 INFO:teuthology.orchestra.run.smithi019.stdout:Processing triggers for libc-bin (2.35-0ubuntu3.1) ... 2024-09-16T14:29:24.601 INFO:teuthology.orchestra.run.smithi019.stderr:W: --force-yes is deprecated, use one of the options starting with --allow instead. 2024-09-16T14:29:24.606 DEBUG:teuthology.parallel:result is None 2024-09-16T14:29:24.607 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:24.750 DEBUG:teuthology.orchestra.run.smithi019:> dpkg-query -W -f '${Version}' ceph 2024-09-16T14:29:24.769 INFO:teuthology.orchestra.run.smithi019.stdout:18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:24.769 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:24.770 INFO:teuthology.task.install:The correct ceph version 18.2.4-845-ge4e227b3-1jammy is installed. 2024-09-16T14:29:24.772 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:24.910 DEBUG:teuthology.orchestra.run.smithi139:> dpkg-query -W -f '${Version}' ceph 2024-09-16T14:29:24.929 INFO:teuthology.orchestra.run.smithi139.stdout:18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:24.929 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:24.929 INFO:teuthology.task.install:The correct ceph version 18.2.4-845-ge4e227b3-1jammy is installed. 2024-09-16T14:29:24.931 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:25.070 DEBUG:teuthology.orchestra.run.smithi162:> dpkg-query -W -f '${Version}' ceph 2024-09-16T14:29:25.089 INFO:teuthology.orchestra.run.smithi162.stdout:18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:25.090 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-845-ge4e227b3-1jammy 2024-09-16T14:29:25.090 INFO:teuthology.task.install:The correct ceph version 18.2.4-845-ge4e227b3-1jammy is installed. 2024-09-16T14:29:25.092 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-16T14:29:25.092 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:29:25.092 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T14:29:25.107 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:29:25.107 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T14:29:25.121 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:29:25.121 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-16T14:29:25.145 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-16T14:29:25.146 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:29:25.146 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T14:29:25.162 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T14:29:25.217 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:29:25.217 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T14:29:25.230 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T14:29:25.286 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:29:25.287 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/usr/bin/daemon-helper 2024-09-16T14:29:25.301 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-16T14:29:25.356 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-16T14:29:25.356 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:29:25.356 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T14:29:25.370 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T14:29:25.426 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:29:25.426 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T14:29:25.440 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T14:29:25.495 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:29:25.495 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-16T14:29:25.509 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-16T14:29:25.562 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-16T14:29:25.562 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:29:25.563 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T14:29:25.575 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T14:29:25.630 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:29:25.630 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T14:29:25.644 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T14:29:25.699 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:29:25.699 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/usr/bin/stdin-killer 2024-09-16T14:29:25.712 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-16T14:29:25.767 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-16T14:29:25.855 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, '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': 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8'} 2024-09-16T14:29:25.855 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:25.856 INFO:tasks.cephadm:Cluster fsid is 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:29:25.856 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-16T14:29:25.856 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.19', 'mon.b': '172.21.15.139', 'mon.c': '172.21.15.162'} 2024-09-16T14:29:25.857 INFO:tasks.cephadm:First mon is mon.a on smithi019 2024-09-16T14:29:25.857 INFO:tasks.cephadm:First mgr is a 2024-09-16T14:29:25.857 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-16T14:29:25.857 DEBUG:teuthology.orchestra.run.smithi019:> sudo hostname $(hostname -s) 2024-09-16T14:29:25.871 DEBUG:teuthology.orchestra.run.smithi139:> sudo hostname $(hostname -s) 2024-09-16T14:29:25.885 DEBUG:teuthology.orchestra.run.smithi162:> sudo hostname $(hostname -s) 2024-09-16T14:29:25.900 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-16T14:29:25.900 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:26.043 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'e4e227b37858f5109138494e01e5ba1ba7b8ffe8', '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/56072/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-845-ge4e227b3', 'node_name': '172.21.5.33+adami03', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-845-ge4e227b3-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-13 18:28:33.728803', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-16T14:29:26.180 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref reef, sha1 e4e227b37858f5109138494e01e5ba1ba7b8ffe8 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:29:26.181 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-16T14:29:26.181 DEBUG:teuthology.orchestra.run.smithi019:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:26.595 INFO:teuthology.orchestra.run.smithi019.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 16 14:29 /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:26.596 DEBUG:teuthology.orchestra.run.smithi139:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.002 INFO:teuthology.orchestra.run.smithi139.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 16 14:29 /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.002 DEBUG:teuthology.orchestra.run.smithi162:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/reef/e4e227b37858f5109138494e01e5ba1ba7b8ffe8/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.420 INFO:teuthology.orchestra.run.smithi162.stdout:-rw-rw-r-- 1 ubuntu ubuntu 218649 Sep 16 14:29 /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.421 DEBUG:teuthology.orchestra.run.smithi019:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.428 DEBUG:teuthology.orchestra.run.smithi139:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.436 DEBUG:teuthology.orchestra.run.smithi162:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-16T14:29:27.454 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 on all hosts... 2024-09-16T14:29:27.454 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 pull 2024-09-16T14:29:27.471 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 pull 2024-09-16T14:29:27.480 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 pull 2024-09-16T14:29:27.593 INFO:teuthology.orchestra.run.smithi019.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8... 2024-09-16T14:29:27.598 INFO:teuthology.orchestra.run.smithi139.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8... 2024-09-16T14:29:27.607 INFO:teuthology.orchestra.run.smithi162.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8... 2024-09-16T14:31:04.624 INFO:teuthology.orchestra.run.smithi162.stdout:{ 2024-09-16T14:31:04.624 INFO:teuthology.orchestra.run.smithi162.stdout: "ceph_version": "ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable)", 2024-09-16T14:31:04.625 INFO:teuthology.orchestra.run.smithi162.stdout: "image_id": "67ddd33fa72f26a51c969a9043e7a3ddf784506b3d1949ad815ae4dd791beec1", 2024-09-16T14:31:04.625 INFO:teuthology.orchestra.run.smithi162.stdout: "repo_digests": [ 2024-09-16T14:31:04.625 INFO:teuthology.orchestra.run.smithi162.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:94ec087b0651344ea44bf4ca432cec3d5bcba32599243d0588e250fe952c8322" 2024-09-16T14:31:04.625 INFO:teuthology.orchestra.run.smithi162.stdout: ] 2024-09-16T14:31:04.625 INFO:teuthology.orchestra.run.smithi162.stdout:} 2024-09-16T14:31:06.113 INFO:teuthology.orchestra.run.smithi139.stdout:{ 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout: "ceph_version": "ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable)", 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout: "image_id": "67ddd33fa72f26a51c969a9043e7a3ddf784506b3d1949ad815ae4dd791beec1", 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout: "repo_digests": [ 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:94ec087b0651344ea44bf4ca432cec3d5bcba32599243d0588e250fe952c8322" 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout: ] 2024-09-16T14:31:06.114 INFO:teuthology.orchestra.run.smithi139.stdout:} 2024-09-16T14:31:06.571 INFO:teuthology.orchestra.run.smithi019.stdout:{ 2024-09-16T14:31:06.571 INFO:teuthology.orchestra.run.smithi019.stdout: "ceph_version": "ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable)", 2024-09-16T14:31:06.571 INFO:teuthology.orchestra.run.smithi019.stdout: "image_id": "67ddd33fa72f26a51c969a9043e7a3ddf784506b3d1949ad815ae4dd791beec1", 2024-09-16T14:31:06.571 INFO:teuthology.orchestra.run.smithi019.stdout: "repo_digests": [ 2024-09-16T14:31:06.571 INFO:teuthology.orchestra.run.smithi019.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:94ec087b0651344ea44bf4ca432cec3d5bcba32599243d0588e250fe952c8322" 2024-09-16T14:31:06.572 INFO:teuthology.orchestra.run.smithi019.stdout: ] 2024-09-16T14:31:06.572 INFO:teuthology.orchestra.run.smithi019.stdout:} 2024-09-16T14:31:06.609 DEBUG:teuthology.orchestra.run.smithi019:> sudo mkdir -p /etc/ceph 2024-09-16T14:31:06.624 DEBUG:teuthology.orchestra.run.smithi139:> sudo mkdir -p /etc/ceph 2024-09-16T14:31:06.638 DEBUG:teuthology.orchestra.run.smithi162:> sudo mkdir -p /etc/ceph 2024-09-16T14:31:06.653 DEBUG:teuthology.orchestra.run.smithi019:> sudo chmod 777 /etc/ceph 2024-09-16T14:31:06.681 DEBUG:teuthology.orchestra.run.smithi139:> sudo chmod 777 /etc/ceph 2024-09-16T14:31:06.694 DEBUG:teuthology.orchestra.run.smithi162:> sudo chmod 777 /etc/ceph 2024-09-16T14:31:06.706 INFO:tasks.cephadm:Writing seed config... 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-16T14:31:06.708 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-16T14:31:06.709 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:31:06.709 DEBUG:teuthology.orchestra.run.smithi019:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-16T14:31:06.730 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 130fbd00-7438-11ef-bceb-c7b262605968 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = 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-16T14:31:06.731 DEBUG:teuthology.orchestra.run.smithi019:mon.a> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service 2024-09-16T14:31:06.775 DEBUG:teuthology.orchestra.run.smithi019:mgr.a> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a.service 2024-09-16T14:31:06.818 INFO:tasks.cephadm:Bootstrapping... 2024-09-16T14:31:06.819 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 -v bootstrap --fsid 130fbd00-7438-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.19 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:31:06.987 INFO:teuthology.orchestra.run.smithi019.stdout:-------------------------------------------------------------------------------- 2024-09-16T14:31:06.987 INFO:teuthology.orchestra.run.smithi019.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8', '-v', 'bootstrap', '--fsid', '130fbd00-7438-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.19', '--skip-admin-label'] 2024-09-16T14:31:06.988 INFO:teuthology.orchestra.run.smithi019.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-16T14:31:06.988 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying podman|docker is present... 2024-09-16T14:31:06.989 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying lvm2 is present... 2024-09-16T14:31:06.989 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying time synchronization is in place... 2024-09-16T14:31:06.995 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T14:31:06.995 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T14:31:07.000 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T14:31:07.000 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.004 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T14:31:07.004 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T14:31:07.008 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T14:31:07.008 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.012 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T14:31:07.013 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout masked 2024-09-16T14:31:07.016 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T14:31:07.016 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.020 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T14:31:07.020 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T14:31:07.024 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T14:31:07.024 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.028 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout enabled 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout active 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:Unit ntp.service is enabled and running 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:Repeating the final host check... 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:docker (/usr/bin/docker) is present 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl is present 2024-09-16T14:31:07.032 INFO:teuthology.orchestra.run.smithi019.stdout:lvcreate is present 2024-09-16T14:31:07.036 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-16T14:31:07.036 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-16T14:31:07.040 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-16T14:31:07.040 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.043 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-16T14:31:07.043 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-16T14:31:07.047 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-16T14:31:07.047 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.051 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-16T14:31:07.051 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout masked 2024-09-16T14:31:07.055 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-16T14:31:07.055 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.059 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-16T14:31:07.059 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-16T14:31:07.063 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-16T14:31:07.063 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout inactive 2024-09-16T14:31:07.067 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout enabled 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stdout active 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:Unit ntp.service is enabled and running 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:Host looks OK 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:Cluster fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:Acquiring lock 139677764389856 on /run/cephadm/130fbd00-7438-11ef-bceb-c7b262605968.lock 2024-09-16T14:31:07.071 INFO:teuthology.orchestra.run.smithi019.stdout:Lock 139677764389856 acquired on /run/cephadm/130fbd00-7438-11ef-bceb-c7b262605968.lock 2024-09-16T14:31:07.072 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying IP 172.21.15.19 port 3300 ... 2024-09-16T14:31:07.072 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying IP 172.21.15.19 port 6789 ... 2024-09-16T14:31:07.072 INFO:teuthology.orchestra.run.smithi019.stdout:Base mon IP(s) is [172.21.15.19:3300, 172.21.15.19:6789], mon addrv is [v2:172.21.15.19:3300,v1:172.21.15.19:6789] 2024-09-16T14:31:07.075 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-16T14:31:07.075 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-16T14:31:07.075 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.19 2024-09-16T14:31:07.077 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-16T14:31:07.077 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-16T14:31:07.078 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1795sec hoplimit 64 pref medium 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout 3: ens1f0: mtu 1500 state UP qlen 1000 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:161e/64 scope link 2024-09-16T14:31:07.080 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-16T14:31:07.081 INFO:teuthology.orchestra.run.smithi019.stdout:Mon IP `172.21.15.19` is in CIDR network `172.21.0.0/20` 2024-09-16T14:31:07.081 INFO:teuthology.orchestra.run.smithi019.stdout:Mon IP `172.21.15.19` is in CIDR network `172.21.0.0/20` 2024-09-16T14:31:07.081 INFO:teuthology.orchestra.run.smithi019.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-16T14:31:07.081 INFO:teuthology.orchestra.run.smithi019.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-16T14:31:07.082 INFO:teuthology.orchestra.run.smithi019.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8... 2024-09-16T14:31:07.319 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/docker: stdout e4e227b37858f5109138494e01e5ba1ba7b8ffe8: Pulling from ceph-ci/ceph 2024-09-16T14:31:07.319 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/docker: stdout Digest: sha256:94ec087b0651344ea44bf4ca432cec3d5bcba32599243d0588e250fe952c8322 2024-09-16T14:31:07.320 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:31:07.320 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 2024-09-16T14:31:08.951 INFO:teuthology.orchestra.run.smithi019.stdout:ceph: stdout ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable) 2024-09-16T14:31:08.951 INFO:teuthology.orchestra.run.smithi019.stdout:Ceph version: ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable) 2024-09-16T14:31:08.951 INFO:teuthology.orchestra.run.smithi019.stdout:Extracting ceph user uid/gid from container image... 2024-09-16T14:31:10.281 INFO:teuthology.orchestra.run.smithi019.stdout:stat: stdout 167 167 2024-09-16T14:31:10.281 INFO:teuthology.orchestra.run.smithi019.stdout:Creating initial keys... 2024-09-16T14:31:11.704 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-authtool: stdout AQAvQehmI9N5CRAAmMaCoguUTXOGc8XrK1qumg== 2024-09-16T14:31:13.135 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-authtool: stdout AQAwQehmubiXJRAA/4G01uAy+9h+oix9/RdzJw== 2024-09-16T14:31:14.565 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-authtool: stdout AQAyQehm4ErpABAAZVpBra/n5y0f5QdgjdGXdQ== 2024-09-16T14:31:14.567 INFO:teuthology.orchestra.run.smithi019.stdout:Creating initial monmap... 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:monmaptool for a [v2:172.21.15.19:3300,v1:172.21.15.19:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:setting min_mon_release = pacific 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: set fsid to 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:31:16.048 INFO:teuthology.orchestra.run.smithi019.stdout:Creating mon... 2024-09-16T14:31:17.365 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.875+0000 7fd259ffdb00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T14:31:17.365 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.875+0000 7fd259ffdb00 1 imported monmap: 2024-09-16T14:31:17.365 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-16T14:31:17.365 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:17.365 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-16T14:31:15.501973+0000 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr created 2024-09-16T14:31:15.501973+0000 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr min_mon_release 16 (pacific) 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0] mon.a 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.875+0000 7fd259ffdb00 0 /usr/bin/ceph-mon: set fsid to 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Git sha 0 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Compile date 2024-09-13 16:45:57 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: DB SUMMARY 2024-09-16T14:31:17.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: DB Session ID: SY95YG1STO0YDX0XX6JM 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 0, files: 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 2024-09-16T14:31:17.367 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.error_if_exists: 0 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.create_if_missing: 1 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.env: 0x55822fd2cbc0 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.info_log: 0x5582305ec800 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T14:31:17.394 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.statistics: (nil) 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.use_fsync: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T14:31:17.395 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.db_log_dir: 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.wal_dir: 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.write_buffer_manager: 0x5582305f2e60 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T14:31:17.396 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.unordered_write: 0 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.row_cache: None 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.wal_filter: None 2024-09-16T14:31:17.397 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.two_write_queues: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.wal_compression: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.atomic_flush: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T14:31:17.398 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T14:31:17.399 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_open_files: -1 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Compression algorithms supported: 2024-09-16T14:31:17.400 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kZSTD supported: 0 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kXpressCompression supported: 0 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kZlibCompression supported: 1 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000001 2024-09-16T14:31:17.401 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.merge_operator: 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_filter: None 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5582305e5d40) 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T14:31:17.402 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x5582305d91f0 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-16T14:31:17.403 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-16T14:31:17.404 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-16T14:31:17.405 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression: NoCompression 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.num_levels: 7 2024-09-16T14:31:17.406 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T14:31:17.407 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T14:31:17.408 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T14:31:17.409 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T14:31:17.410 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.bloom_locality: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.ttl: 2592000 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T14:31:17.411 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enable_blob_files: false 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.min_blob_size: 0 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 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-16T14:31:17.412 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 27470528-bff6-471d-877b-0d4cc0764015 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.879+0000 7fd259ffdb00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd259ffdb00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x558230604e00 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd259ffdb00 4 rocksdb: DB pointer 0x5582306d6000 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd251789640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd251789640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:31:17.413 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-16T14:31:17.414 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.415 INFO:teuthology.orchestra.run.smithi019.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-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x5582305d91f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd259ffdb00 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd259ffdb00 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-16T14:31:16.883+0000 7fd259ffdb00 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-a for mon.a 2024-09-16T14:31:17.416 INFO:teuthology.orchestra.run.smithi019.stdout:create mon.a on 2024-09-16T14:31:17.687 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Removed /etc/systemd/system/multi-user.target.wants/ceph.target. 2024-09-16T14:31:17.891 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-16T14:31:18.126 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target. 2024-09-16T14:31:18.126 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target -> /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target. 2024-09-16T14:31:18.428 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a 2024-09-16T14:31:18.428 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to reset failed state of unit ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-16T14:31:18.639 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target.wants/ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service -> /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service. 2024-09-16T14:31:18.648 INFO:teuthology.orchestra.run.smithi019.stdout:firewalld does not appear to be present 2024-09-16T14:31:18.648 INFO:teuthology.orchestra.run.smithi019.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T14:31:18.648 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mon to start... 2024-09-16T14:31:18.649 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mon... 2024-09-16T14:31:20.352 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:20 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.175510+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout cluster: 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout id: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout services: 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.142532s) 2024-09-16T14:31:20.959 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-16T14:31:20.960 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-16T14:31:20.960 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:20.960 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout data: 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout pgs: 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:mon is available 2024-09-16T14:31:20.961 INFO:teuthology.orchestra.run.smithi019.stdout:Assimilating anything we can from ceph.conf... 2024-09-16T14:31:21.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.197892+0000 mon.a (mon.0) 2 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T14:31:21.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.198095+0000 mon.a (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:31:21.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.200399+0000 mon.a (mon.0) 4 : cluster [DBG] fsmap 2024-09-16T14:31:21.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.202784+0000 mon.a (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T14:31:21.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: cluster 2024-09-16T14:31:20.203324+0000 mon.a (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T14:31:21.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:21 smithi019 bash[22018]: audit 2024-09-16T14:31:20.340368+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.19:0/3265134635' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-16T14:31:22.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:22 smithi019 bash[22018]: audit 2024-09-16T14:31:22.064055+0000 mon.a (mon.0) 8 : audit [INF] from='client.? 172.21.15.19:0/2618022994' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T14:31:22.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:22 smithi019 bash[22018]: audit 2024-09-16T14:31:22.071036+0000 mon.a (mon.0) 9 : audit [INF] from='client.? 172.21.15.19:0/2618022994' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout fsid = 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.19:3300,v1:172.21.15.19:6789] 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T14:31:22.591 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T14:31:22.592 INFO:teuthology.orchestra.run.smithi019.stdout:Generating new minimal ceph.conf... 2024-09-16T14:31:23.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:23 smithi019 bash[22018]: audit 2024-09-16T14:31:23.653092+0000 mon.a (mon.0) 10 : audit [DBG] from='client.? 172.21.15.19:0/3888897588' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:31:24.196 INFO:teuthology.orchestra.run.smithi019.stdout:Restarting the monitor... 2024-09-16T14:31:24.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 systemd[1]: Stopping Ceph mon.a for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:31:24.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 bash[22018]: debug 2024-09-16T14:31:24.327+0000 7ffad5efd640 -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-16T14:31:24.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 bash[22018]: debug 2024-09-16T14:31:24.327+0000 7ffad5efd640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-16T14:31:24.896 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 bash[22402]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-mon-a 2024-09-16T14:31:24.916 INFO:teuthology.orchestra.run.smithi019.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-16T14:31:25.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 bash[22462]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-mon-a 2024-09-16T14:31:25.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 systemd[1]: ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-16T14:31:25.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 systemd[1]: Stopped Ceph mon.a for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:31:25.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:24 smithi019 systemd[1]: Started Ceph mon.a for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:31:26.407 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.199+0000 7f4a75038b00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.199+0000 7f4a75038b00 0 ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable), process ceph-mon, pid 7 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.199+0000 7f4a75038b00 0 pidfile_write: ignore empty --pid-file 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 0 load: jerasure load: lrc 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Git sha 0 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Compile date 2024-09-13 16:45:57 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: DB SUMMARY 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: DB Session ID: X83FUSFHFEDT817TH6JX 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: CURRENT file: CURRENT 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-16T14:31:26.408 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 83730 ; 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.error_if_exists: 0 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.create_if_missing: 0 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.env: 0x555e01582bc0 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.info_log: 0x555e03544be0 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.statistics: (nil) 2024-09-16T14:31:26.409 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.use_fsync: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T14:31:26.410 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.db_log_dir: 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.wal_dir: 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.write_buffer_manager: 0x555e03552320 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T14:31:26.411 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.unordered_write: 0 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.row_cache: None 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.wal_filter: None 2024-09-16T14:31:26.412 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.two_write_queues: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.wal_compression: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.atomic_flush: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T14:31:26.413 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T14:31:26.414 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T14:31:26.414 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T14:31:26.414 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T14:31:26.414 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T14:31:26.415 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_open_files: -1 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Compression algorithms supported: 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kZSTD supported: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kXpressCompression supported: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T14:31:26.416 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kZlibCompression supported: 1 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.merge_operator: 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_filter: None 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T14:31:26.417 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555e035447e0) 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cache_index_and_filter_blocks: 1 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: pin_top_level_index_and_filter: 1 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: index_type: 0 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: data_block_index_type: 0 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: index_shortening: 1 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: checksum: 4 2024-09-16T14:31:26.418 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: no_block_cache: 0 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_cache: 0x555e0353b350 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_cache_name: BinnedLRUCache 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_cache_options: 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: capacity : 536870912 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: num_shard_bits : 4 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: strict_capacity_limit : 0 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: high_pri_pool_ratio: 0.000 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_cache_compressed: (nil) 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: persistent_cache: (nil) 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_size: 4096 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_size_deviation: 10 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_restart_interval: 16 2024-09-16T14:31:26.419 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: index_block_restart_interval: 1 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: metadata_block_size: 4096 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: partition_filters: 0 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: use_delta_encoding: 1 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: filter_policy: bloomfilter 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: whole_key_filtering: 1 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: verify_compression: 0 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: read_amp_bytes_per_bit: 0 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: format_version: 5 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: enable_index_compression: 1 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: block_align: 0 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: max_auto_readahead_size: 262144 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: prepopulate_block_cache: 0 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: initial_auto_readahead_size: 8192 2024-09-16T14:31:26.420 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: num_file_reads_for_auto_readahead: 2 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression: NoCompression 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.num_levels: 7 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T14:31:26.421 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:31:26.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T14:31:26.423 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T14:31:26.424 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T14:31:26.425 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.bloom_locality: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.ttl: 2592000 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enable_blob_files: false 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.min_blob_size: 0 2024-09-16T14:31:26.426 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.203+0000 7f4a75038b00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 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-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 27470528-bff6-471d-877b-0d4cc0764015 2024-09-16T14:31:26.427 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497086209692, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497086210753, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80503, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 250, "table_properties": {"data_size": 78664, "index_size": 223, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 9896, "raw_average_key_size": 47, "raw_value_size": 72972, "raw_average_value_size": 349, "num_data_blocks": 10, "num_entries": 209, "num_filter_entries": 209, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726497086, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "27470528-bff6-471d-877b-0d4cc0764015", "db_session_id": "X83FUSFHFEDT817TH6JX", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497086210890, "job": 1, "event": "recovery_finished"} 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 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-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x555e03564e00 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a75038b00 4 rocksdb: DB pointer 0x555e0365c000 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a6ae03640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.207+0000 7f4a6ae03640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: ** DB Stats ** 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:31:26.428 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 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-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 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-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: ** Compaction Stats [default] ** 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 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-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: L0 2/0 80.48 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Sum 2/0 80.48 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 116.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: ** Compaction Stats [default] ** 2024-09-16T14:31:26.429 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 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-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 116.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T14:31:26.430 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Cumulative compaction: 0.00 GB write, 17.37 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Interval compaction: 0.00 GB write, 17.37 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 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-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Block cache BinnedLRUCache@0x555e0353b350#7 capacity: 512.00 MB usage: 1.17 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.41 KB,7.7486e-05%) Misc(1,0.00 KB,0%) 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 starting mon.a rank 0 at public addrs [v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0] at bind addrs [v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 1 mon.a@-1(???) e1 preinit fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).mds e1 new map 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).mds e1 print_map 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: e1 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-16T14:31:26.431 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: legacy client fscid: -1 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: No filesystems configured 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 0 mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: debug 2024-09-16T14:31:26.211+0000 7f4a75038b00 1 mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cluster 2024-09-16T14:31:26.237969+0000 mon.a (mon.0) 1 : cluster [INF] mon.a is new leader, mons a in quorum (ranks 0) 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cluster 2024-09-16T14:31:26.238049+0000 mon.a (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cluster 2024-09-16T14:31:26.238473+0000 mon.a (mon.0) 3 : cluster [DBG] fsmap 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cluster 2024-09-16T14:31:26.238504+0000 mon.a (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-16T14:31:26.432 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:26 smithi019 bash[22501]: cluster 2024-09-16T14:31:26.238913+0000 mon.a (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-09-16T14:31:26.968 INFO:teuthology.orchestra.run.smithi019.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-16T14:31:26.994 INFO:teuthology.orchestra.run.smithi019.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:31:26.994 INFO:teuthology.orchestra.run.smithi019.stdout:Creating mgr... 2024-09-16T14:31:26.995 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-16T14:31:26.995 INFO:teuthology.orchestra.run.smithi019.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-16T14:31:27.302 INFO:teuthology.orchestra.run.smithi019.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a 2024-09-16T14:31:27.302 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Failed to reset failed state of unit ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-16T14:31:27.306 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:27 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:31:27.306 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:27 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:31:27.504 INFO:teuthology.orchestra.run.smithi019.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968.target.wants/ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a.service -> /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service. 2024-09-16T14:31:27.511 INFO:teuthology.orchestra.run.smithi019.stdout:firewalld does not appear to be present 2024-09-16T14:31:27.512 INFO:teuthology.orchestra.run.smithi019.stdout:Not possible to enable service . firewalld.service is not available 2024-09-16T14:31:27.512 INFO:teuthology.orchestra.run.smithi019.stdout:firewalld does not appear to be present 2024-09-16T14:31:27.512 INFO:teuthology.orchestra.run.smithi019.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-16T14:31:27.512 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mgr to start... 2024-09-16T14:31:27.512 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mgr... 2024-09-16T14:31:27.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:27 smithi019 bash[22501]: audit 2024-09-16T14:31:26.394767+0000 mon.a (mon.0) 6 : audit [INF] from='client.? 172.21.15.19:0/3334171158' entity='client.admin' 2024-09-16T14:31:27.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:27 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:31:27.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:27 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:31:27.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:27 smithi019 systemd[1]: Started Ceph mgr.a for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:31:29.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:29 smithi019 bash[22752]: debug 2024-09-16T14:31:29.147+0000 7fe67f02b040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T14:31:29.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:29 smithi019 bash[22501]: audit 2024-09-16T14:31:29.227471+0000 mon.a (mon.0) 7 : audit [DBG] from='client.? 172.21.15.19:0/4070471714' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T14:31:29.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:29.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:31:29.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsid": "130fbd00-7438-11ef-bceb-c7b262605968", 2024-09-16T14:31:29.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 0 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T14:31:29.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T14:31:29.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T14:31:29.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T14:31:29.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T14:31:20.199279+0000", 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:29.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T14:31:29.850 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:31:29.850 INFO:teuthology.orchestra.run.smithi019.stdout:mgr not available, waiting (1/15)... 2024-09-16T14:31:30.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:30 smithi019 bash[22752]: debug 2024-09-16T14:31:30.387+0000 7fe67f02b040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T14:31:30.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:30 smithi019 bash[22752]: debug 2024-09-16T14:31:30.455+0000 7fe67f02b040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T14:31:30.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:30 smithi019 bash[22752]: debug 2024-09-16T14:31:30.611+0000 7fe67f02b040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T14:31:31.610 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.275+0000 7fe67f02b040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T14:31:31.610 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.347+0000 7fe67f02b040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T14:31:31.611 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.415+0000 7fe67f02b040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T14:31:31.611 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.607+0000 7fe67f02b040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T14:31:31.928 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.683+0000 7fe67f02b040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T14:31:31.928 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:31 smithi019 bash[22752]: debug 2024-09-16T14:31:31.755+0000 7fe67f02b040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T14:31:32.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.019+0000 7fe67f02b040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T14:31:32.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.091+0000 7fe67f02b040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T14:31:32.636 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.291+0000 7fe67f02b040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T14:31:32.636 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.367+0000 7fe67f02b040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T14:31:32.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.631+0000 7fe67f02b040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T14:31:32.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.815+0000 7fe67f02b040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:31:33.261 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:33 smithi019 bash[22501]: audit 2024-09-16T14:31:33.093651+0000 mon.a (mon.0) 8 : audit [DBG] from='client.? 172.21.15.19:0/84330096' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T14:31:33.261 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:32 smithi019 bash[22752]: debug 2024-09-16T14:31:32.987+0000 7fe67f02b040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T14:31:33.261 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:33 smithi019 bash[22752]: debug 2024-09-16T14:31:33.067+0000 7fe67f02b040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T14:31:33.262 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:33 smithi019 bash[22752]: debug 2024-09-16T14:31:33.255+0000 7fe67f02b040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsid": "130fbd00-7438-11ef-bceb-c7b262605968", 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.632 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 0 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.633 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T14:31:33.634 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:33.634 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T14:31:33.634 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T14:31:33.634 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T14:31:33.634 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T14:31:33.637 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T14:31:33.637 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T14:31:33.637 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:33.638 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.639 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T14:31:20.199279+0000", 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:31:33.640 INFO:teuthology.orchestra.run.smithi019.stdout:mgr not available, waiting (2/15)... 2024-09-16T14:31:34.392 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.079+0000 7fe67f02b040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T14:31:34.392 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.159+0000 7fe67f02b040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T14:31:34.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.387+0000 7fe67f02b040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T14:31:34.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.463+0000 7fe67f02b040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T14:31:35.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.863+0000 7fe67f02b040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T14:31:35.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:34 smithi019 bash[22752]: debug 2024-09-16T14:31:34.943+0000 7fe67f02b040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: cluster 2024-09-16T14:31:34.967865+0000 mon.a (mon.0) 9 : cluster [INF] Activating manager daemon a 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: cluster 2024-09-16T14:31:34.975705+0000 mon.a (mon.0) 10 : cluster [DBG] mgrmap e2: a(active, starting, since 0.00810121s) 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.976748+0000 mon.a (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.976949+0000 mon.a (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.977113+0000 mon.a (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.977280+0000 mon.a (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.977455+0000 mon.a (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.977632+0000 mon.a (mon.0) 16 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T14:31:35.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.977794+0000 mon.a (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:31:35.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:34.978868+0000 mon.a (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T14:31:35.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: cluster 2024-09-16T14:31:35.003947+0000 mon.a (mon.0) 19 : cluster [INF] Manager daemon a is now available 2024-09-16T14:31:35.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:35.015589+0000 mon.a (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T14:31:35.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:35 smithi019 bash[22501]: audit 2024-09-16T14:31:35.017705+0000 mon.a (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T14:31:36.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:36 smithi019 bash[22501]: audit 2024-09-16T14:31:35.020810+0000 mon.a (mon.0) 22 : audit [INF] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' 2024-09-16T14:31:36.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:36 smithi019 bash[22501]: audit 2024-09-16T14:31:35.027953+0000 mon.a (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' 2024-09-16T14:31:36.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:36 smithi019 bash[22501]: audit 2024-09-16T14:31:35.032587+0000 mon.a (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.19:0/3180164173' entity='mgr.a' 2024-09-16T14:31:36.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:36 smithi019 bash[22501]: cluster 2024-09-16T14:31:35.981750+0000 mon.a (mon.0) 25 : cluster [DBG] mgrmap e3: a(active, since 1.01414s) 2024-09-16T14:31:37.838 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:37.838 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:31:37.838 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsid": "130fbd00-7438-11ef-bceb-c7b262605968", 2024-09-16T14:31:37.838 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "health": { 2024-09-16T14:31:37.839 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-16T14:31:37.839 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 0 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:37.841 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "a" 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-16T14:31:37.842 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-16T14:31:37.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-16T14:31:37.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-16T14:31:37.843 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-16T14:31:37.846 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.846 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-16T14:31:37.847 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T14:31:37.848 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "restful" 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ], 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "modified": "2024-09-16T14:31:20.199279+0000", 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout }, 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-16T14:31:37.849 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:31:37.850 INFO:teuthology.orchestra.run.smithi019.stdout:mgr is available 2024-09-16T14:31:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:38 smithi019 bash[22501]: cluster 2024-09-16T14:31:37.031440+0000 mon.a (mon.0) 26 : cluster [DBG] mgrmap e4: a(active, since 2s) 2024-09-16T14:31:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:38 smithi019 bash[22501]: audit 2024-09-16T14:31:37.290799+0000 mon.a (mon.0) 27 : audit [DBG] from='client.? 172.21.15.19:0/1726214466' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-16T14:31:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:39 smithi019 bash[22501]: audit 2024-09-16T14:31:39.176772+0000 mon.a (mon.0) 28 : audit [INF] from='client.? 172.21.15.19:0/2063130530' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-16T14:31:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:39 smithi019 bash[22501]: audit 2024-09-16T14:31:39.183460+0000 mon.a (mon.0) 29 : audit [INF] from='client.? 172.21.15.19:0/2063130530' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [global] 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout fsid = 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-16T14:31:39.689 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout [osd] 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-16T14:31:39.690 INFO:teuthology.orchestra.run.smithi019.stdout:Enabling cephadm module... 2024-09-16T14:31:41.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:41 smithi019 bash[22501]: audit 2024-09-16T14:31:41.149159+0000 mon.a (mon.0) 30 : audit [INF] from='client.? 172.21.15.19:0/2548083857' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-16T14:31:41.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:41 smithi019 bash[22752]: ignoring --setuser ceph since I am not root 2024-09-16T14:31:41.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:41 smithi019 bash[22752]: ignoring --setgroup ceph since I am not root 2024-09-16T14:31:41.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:41 smithi019 bash[22752]: debug 2024-09-16T14:31:41.351+0000 7f5fe8b82040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T14:31:42.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:42 smithi019 bash[22501]: audit 2024-09-16T14:31:41.205861+0000 mon.a (mon.0) 31 : audit [INF] from='client.? 172.21.15.19:0/2548083857' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-16T14:31:42.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:42 smithi019 bash[22501]: cluster 2024-09-16T14:31:41.205929+0000 mon.a (mon.0) 32 : cluster [DBG] mgrmap e5: a(active, since 6s) 2024-09-16T14:31:42.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:42 smithi019 bash[22752]: debug 2024-09-16T14:31:42.583+0000 7f5fe8b82040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T14:31:42.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:42 smithi019 bash[22752]: debug 2024-09-16T14:31:42.655+0000 7f5fe8b82040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T14:31:42.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:42 smithi019 bash[22752]: debug 2024-09-16T14:31:42.811+0000 7f5fe8b82040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T14:31:43.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22501]: audit 2024-09-16T14:31:43.168458+0000 mon.a (mon.0) 33 : audit [DBG] from='client.? 172.21.15.19:0/3951690947' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:31:43.717 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for the mgr to restart... 2024-09-16T14:31:43.718 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mgr epoch 5... 2024-09-16T14:31:43.810 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.479+0000 7f5fe8b82040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T14:31:43.810 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.551+0000 7f5fe8b82040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T14:31:43.810 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.623+0000 7f5fe8b82040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T14:31:44.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.815+0000 7f5fe8b82040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T14:31:44.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.891+0000 7f5fe8b82040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T14:31:44.229 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:43 smithi019 bash[22752]: debug 2024-09-16T14:31:43.963+0000 7f5fe8b82040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T14:31:44.503 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:44 smithi019 bash[22752]: debug 2024-09-16T14:31:44.227+0000 7f5fe8b82040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T14:31:44.503 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:44 smithi019 bash[22752]: debug 2024-09-16T14:31:44.299+0000 7f5fe8b82040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T14:31:44.848 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:44 smithi019 bash[22752]: debug 2024-09-16T14:31:44.499+0000 7f5fe8b82040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T14:31:44.849 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:44 smithi019 bash[22752]: debug 2024-09-16T14:31:44.579+0000 7f5fe8b82040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T14:31:45.197 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:44 smithi019 bash[22752]: debug 2024-09-16T14:31:44.843+0000 7f5fe8b82040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T14:31:45.198 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:45 smithi019 bash[22752]: debug 2024-09-16T14:31:45.023+0000 7f5fe8b82040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:31:45.462 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:45 smithi019 bash[22752]: debug 2024-09-16T14:31:45.191+0000 7f5fe8b82040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T14:31:45.462 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:45 smithi019 bash[22752]: debug 2024-09-16T14:31:45.275+0000 7f5fe8b82040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T14:31:45.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:45 smithi019 bash[22752]: debug 2024-09-16T14:31:45.455+0000 7f5fe8b82040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:31:46.589 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:46 smithi019 bash[22752]: debug 2024-09-16T14:31:46.275+0000 7f5fe8b82040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T14:31:46.589 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:46 smithi019 bash[22752]: debug 2024-09-16T14:31:46.355+0000 7f5fe8b82040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T14:31:46.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:46 smithi019 bash[22752]: debug 2024-09-16T14:31:46.583+0000 7f5fe8b82040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T14:31:46.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:46 smithi019 bash[22752]: debug 2024-09-16T14:31:46.659+0000 7f5fe8b82040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T14:31:47.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22752]: debug 2024-09-16T14:31:47.059+0000 7f5fe8b82040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T14:31:47.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22752]: debug 2024-09-16T14:31:47.139+0000 7f5fe8b82040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: cluster 2024-09-16T14:31:47.163575+0000 mon.a (mon.0) 34 : cluster [INF] Active manager daemon a restarted 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: cluster 2024-09-16T14:31:47.164005+0000 mon.a (mon.0) 35 : cluster [INF] Activating manager daemon a 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: cluster 2024-09-16T14:31:47.168641+0000 mon.a (mon.0) 36 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: cluster 2024-09-16T14:31:47.168773+0000 mon.a (mon.0) 37 : cluster [DBG] mgrmap e6: a(active, starting, since 0.00494283s) 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.170366+0000 mon.a (mon.0) 38 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.171825+0000 mon.a (mon.0) 39 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.172767+0000 mon.a (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.172964+0000 mon.a (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.173164+0000 mon.a (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: cluster 2024-09-16T14:31:47.199249+0000 mon.a (mon.0) 43 : cluster [INF] Manager daemon a is now available 2024-09-16T14:31:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:47 smithi019 bash[22501]: audit 2024-09-16T14:31:47.212443+0000 mon.a (mon.0) 44 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: cephadm 2024-09-16T14:31:47.209564+0000 mgr.a (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.216498+0000 mon.a (mon.0) 45 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.221202+0000 mon.a (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.224286+0000 mon.a (mon.0) 47 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.226813+0000 mon.a (mon.0) 48 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.236531+0000 mon.a (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:47.240160+0000 mon.a (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:48.082308+0000 mon.a (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: audit 2024-09-16T14:31:48.087271+0000 mon.a (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:48.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:48 smithi019 bash[22501]: cluster 2024-09-16T14:31:48.174659+0000 mon.a (mon.0) 53 : cluster [DBG] mgrmap e7: a(active, since 1.01082s) 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:mgr epoch 5 is available 2024-09-16T14:31:48.791 INFO:teuthology.orchestra.run.smithi019.stdout:Setting orchestrator backend to cephadm... 2024-09-16T14:31:49.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22501]: audit 2024-09-16T14:31:48.174006+0000 mgr.a (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22501]: audit 2024-09-16T14:31:48.185379+0000 mgr.a (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: debug 2024-09-16T14:31:49.319+0000 7f5f5608b640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:14:31:49] ENGINE Error in HTTPServer.serve 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: Traceback (most recent call last): 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: self._connections.run(self.expiration_interval) 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: self._run(expiration_interval) 2024-09-16T14:31:49.480 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: s = self.context.wrap_socket( 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: return self.sslsocket_class._create( 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: self.do_handshake() 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: self._sslobj.do_handshake() 2024-09-16T14:31:49.481 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:49 smithi019 bash[22752]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T14:31:50.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:50 smithi019 bash[22501]: cephadm 2024-09-16T14:31:49.194208+0000 mgr.a (mgr.14118) 4 : cephadm [INF] [16/Sep/2024:14:31:49] ENGINE Bus STARTING 2024-09-16T14:31:50.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:50 smithi019 bash[22501]: cluster 2024-09-16T14:31:49.223487+0000 mon.a (mon.0) 54 : cluster [DBG] mgrmap e8: a(active, since 2s) 2024-09-16T14:31:50.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:50 smithi019 bash[22501]: audit 2024-09-16T14:31:49.421864+0000 mon.a (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:31:50.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:50 smithi019 bash[22501]: audit 2024-09-16T14:31:50.159735+0000 mon.a (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:50.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:50 smithi019 bash[22501]: audit 2024-09-16T14:31:50.174198+0000 mon.a (mon.0) 57 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:31:51.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: cephadm 2024-09-16T14:31:49.319360+0000 mgr.a (mgr.14118) 5 : cephadm [INF] [16/Sep/2024:14:31:49] ENGINE Serving on https://172.21.15.19:7150 2024-09-16T14:31:51.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: cephadm 2024-09-16T14:31:49.322793+0000 mgr.a (mgr.14118) 6 : cephadm [ERR] [16/Sep/2024:14:31:49] ENGINE Error in HTTPServer.serve 2024-09-16T14:31:51.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: Traceback (most recent call last): 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: self._connections.run(self.expiration_interval) 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: self._run(expiration_interval) 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: s = self.context.wrap_socket( 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T14:31:51.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: return self.sslsocket_class._create( 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: self.do_handshake() 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: self._sslobj.do_handshake() 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: cephadm 2024-09-16T14:31:49.420685+0000 mgr.a (mgr.14118) 7 : cephadm [INF] [16/Sep/2024:14:31:49] ENGINE Serving on http://172.21.15.19:8765 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: cephadm 2024-09-16T14:31:49.420852+0000 mgr.a (mgr.14118) 8 : cephadm [INF] [16/Sep/2024:14:31:49] ENGINE Bus STARTED 2024-09-16T14:31:51.481 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:51 smithi019 bash[22501]: audit 2024-09-16T14:31:50.152857+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-16T14:31:52.472 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-16T14:31:52.472 INFO:teuthology.orchestra.run.smithi019.stdout:Generating ssh key... 2024-09-16T14:31:52.565 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:52 smithi019 bash[22501]: audit 2024-09-16T14:31:51.940970+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-16T14:31:54.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: Generating public/private rsa key pair. 2024-09-16T14:31:54.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: Your identification has been saved in /tmp/tmpkzes16dj/key 2024-09-16T14:31:54.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: Your public key has been saved in /tmp/tmpkzes16dj/key.pub 2024-09-16T14:31:54.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: The key fingerprint is: 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: SHA256:SCFg4QwneIfOxgwxRtVE+uaum/3TaAS2CrDs3NeWF6w ceph-130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: The key's randomart image is: 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: +---[RSA 3072]----+ 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |B+*==o. | 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |+Oo oo . | 2024-09-16T14:31:54.231 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: | Boo . | 2024-09-16T14:31:54.232 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |. * .+ . | 2024-09-16T14:31:54.232 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |oo .o+ S | 2024-09-16T14:31:54.232 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |.o o. . o | 2024-09-16T14:31:54.232 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: |o o ..o = . | 2024-09-16T14:31:54.232 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: | o o+. E o | 2024-09-16T14:31:54.233 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: | ++o+.o | 2024-09-16T14:31:54.233 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:31:53 smithi019 bash[22752]: +----[SHA256]-----+ 2024-09-16T14:31:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:54 smithi019 bash[22501]: audit 2024-09-16T14:31:53.813445+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-16T14:31:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:54 smithi019 bash[22501]: cephadm 2024-09-16T14:31:53.813685+0000 mgr.a (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-16T14:31:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:54 smithi019 bash[22501]: audit 2024-09-16T14:31:53.922667+0000 mon.a (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:54 smithi019 bash[22501]: audit 2024-09-16T14:31:53.926009+0000 mon.a (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:31:56.319 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:31:56.319 INFO:teuthology.orchestra.run.smithi019.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-16T14:31:56.319 INFO:teuthology.orchestra.run.smithi019.stdout:Adding key to root@localhost authorized_keys... 2024-09-16T14:31:56.320 INFO:teuthology.orchestra.run.smithi019.stdout:Adding host smithi019... 2024-09-16T14:31:56.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:56 smithi019 bash[22501]: audit 2024-09-16T14:31:55.803226+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-16T14:31:58.452 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:58 smithi019 bash[22501]: audit 2024-09-16T14:31:57.652375+0000 mgr.a (mgr.14118) 14 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi019", "addr": "172.21.15.19", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:31:59.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:31:59 smithi019 bash[22501]: cephadm 2024-09-16T14:31:58.978713+0000 mgr.a (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi019 2024-09-16T14:32:02.362 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout Added host 'smithi019' with addr '172.21.15.19' 2024-09-16T14:32:02.362 INFO:teuthology.orchestra.run.smithi019.stdout:Deploying unmanaged mon service... 2024-09-16T14:32:02.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:02 smithi019 bash[22501]: audit 2024-09-16T14:32:01.557661+0000 mon.a (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:02.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:02 smithi019 bash[22501]: cephadm 2024-09-16T14:32:01.558046+0000 mgr.a (mgr.14118) 16 : cephadm [INF] Added host smithi019 2024-09-16T14:32:02.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:02 smithi019 bash[22501]: audit 2024-09-16T14:32:01.558466+0000 mon.a (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:05.062 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-16T14:32:05.063 INFO:teuthology.orchestra.run.smithi019.stdout:Deploying unmanaged mgr service... 2024-09-16T14:32:05.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:05 smithi019 bash[22501]: audit 2024-09-16T14:32:04.430141+0000 mon.a (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:05.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:05 smithi019 bash[22501]: audit 2024-09-16T14:32:04.463901+0000 mgr.a (mgr.14118) 17 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:32:05.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:05 smithi019 bash[22501]: cephadm 2024-09-16T14:32:04.465836+0000 mgr.a (mgr.14118) 18 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-16T14:32:05.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:05 smithi019 bash[22501]: audit 2024-09-16T14:32:04.468960+0000 mon.a (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:05.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:05 smithi019 bash[22501]: audit 2024-09-16T14:32:04.741134+0000 mon.a (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:07.074 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-16T14:32:07.844 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:07 smithi019 bash[22501]: audit 2024-09-16T14:32:06.525572+0000 mgr.a (mgr.14118) 19 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:32:07.844 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:07 smithi019 bash[22501]: cephadm 2024-09-16T14:32:06.527542+0000 mgr.a (mgr.14118) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-16T14:32:07.844 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:07 smithi019 bash[22501]: audit 2024-09-16T14:32:06.531035+0000 mon.a (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:07.844 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:07 smithi019 bash[22501]: cluster 2024-09-16T14:32:07.174659+0000 mgr.a (mgr.14118) 21 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:32:09.714 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:09 smithi019 bash[22501]: audit 2024-09-16T14:32:08.378593+0000 mon.a (mon.0) 66 : audit [INF] from='client.? 172.21.15.19:0/3001307109' entity='client.admin' 2024-09-16T14:32:09.714 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:09 smithi019 bash[22501]: cluster 2024-09-16T14:32:09.175112+0000 mgr.a (mgr.14118) 22 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:32:10.736 INFO:teuthology.orchestra.run.smithi019.stdout:Enabling the dashboard module... 2024-09-16T14:32:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.745291+0000 mon.a (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.751267+0000 mon.a (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.752071+0000 mon.a (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi019", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:32:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.758768+0000 mon.a (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' 2024-09-16T14:32:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.760317+0000 mon.a (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi019", "caps": []}]: dispatch 2024-09-16T14:32:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:09.765030+0000 mon.a (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.19:0/345701900' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi019", "caps": []}]': finished 2024-09-16T14:32:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:10 smithi019 bash[22501]: audit 2024-09-16T14:32:10.214370+0000 mon.a (mon.0) 73 : audit [INF] from='client.? 172.21.15.19:0/1117664826' entity='client.admin' 2024-09-16T14:32:11.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:11 smithi019 bash[22501]: cluster 2024-09-16T14:32:11.175578+0000 mgr.a (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:32:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:12 smithi019 bash[22501]: cephadm 2024-09-16T14:32:11.319237+0000 mgr.a (mgr.14118) 24 : cephadm [INF] Deploying daemon agent.smithi019 on smithi019 2024-09-16T14:32:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:12 smithi019 bash[22501]: audit 2024-09-16T14:32:12.220085+0000 mon.a (mon.0) 74 : audit [INF] from='client.? 172.21.15.19:0/897266237' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-16T14:32:13.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:12 smithi019 bash[22752]: ignoring --setuser ceph since I am not root 2024-09-16T14:32:13.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:12 smithi019 bash[22752]: ignoring --setgroup ceph since I am not root 2024-09-16T14:32:13.230 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:12 smithi019 bash[22752]: debug 2024-09-16T14:32:12.923+0000 7f6fb0453040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T14:32:14.141 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:13 smithi019 bash[22501]: audit 2024-09-16T14:32:12.764619+0000 mon.a (mon.0) 75 : audit [INF] from='client.? 172.21.15.19:0/897266237' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-16T14:32:14.141 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:13 smithi019 bash[22501]: cluster 2024-09-16T14:32:12.764733+0000 mon.a (mon.0) 76 : cluster [DBG] mgrmap e9: a(active, since 25s) 2024-09-16T14:32:14.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:14 smithi019 bash[22752]: debug 2024-09-16T14:32:14.151+0000 7f6fb0453040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T14:32:14.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:14 smithi019 bash[22752]: debug 2024-09-16T14:32:14.223+0000 7f6fb0453040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T14:32:14.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:14 smithi019 bash[22752]: debug 2024-09-16T14:32:14.379+0000 7f6fb0453040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T14:32:15.052 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:14 smithi019 bash[22501]: audit 2024-09-16T14:32:14.735011+0000 mon.a (mon.0) 77 : audit [DBG] from='client.? 172.21.15.19:0/400700107' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-16T14:32:15.236 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for the mgr to restart... 2024-09-16T14:32:15.237 INFO:teuthology.orchestra.run.smithi019.stdout:Waiting for mgr epoch 9... 2024-09-16T14:32:15.317 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.043+0000 7f6fb0453040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T14:32:15.317 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.115+0000 7f6fb0453040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T14:32:15.317 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.187+0000 7f6fb0453040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T14:32:15.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.379+0000 7f6fb0453040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T14:32:15.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.459+0000 7f6fb0453040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T14:32:15.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.527+0000 7f6fb0453040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T14:32:16.070 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.791+0000 7f6fb0453040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T14:32:16.070 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:15 smithi019 bash[22752]: debug 2024-09-16T14:32:15.863+0000 7f6fb0453040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T14:32:16.412 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.063+0000 7f6fb0453040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T14:32:16.413 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.147+0000 7f6fb0453040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T14:32:16.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.407+0000 7f6fb0453040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T14:32:16.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.587+0000 7f6fb0453040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:32:17.024 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.755+0000 7f6fb0453040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T14:32:17.024 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:16 smithi019 bash[22752]: debug 2024-09-16T14:32:16.835+0000 7f6fb0453040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T14:32:17.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:17 smithi019 bash[22752]: debug 2024-09-16T14:32:17.019+0000 7f6fb0453040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:32:18.157 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:17 smithi019 bash[22752]: debug 2024-09-16T14:32:17.847+0000 7f6fb0453040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T14:32:18.158 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:17 smithi019 bash[22752]: debug 2024-09-16T14:32:17.923+0000 7f6fb0453040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T14:32:18.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22752]: debug 2024-09-16T14:32:18.151+0000 7f6fb0453040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T14:32:18.479 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22752]: debug 2024-09-16T14:32:18.227+0000 7f6fb0453040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T14:32:18.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22752]: debug 2024-09-16T14:32:18.627+0000 7f6fb0453040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T14:32:18.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22752]: debug 2024-09-16T14:32:18.707+0000 7f6fb0453040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T14:32:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: cluster 2024-09-16T14:32:18.731524+0000 mon.a (mon.0) 78 : cluster [INF] Active manager daemon a restarted 2024-09-16T14:32:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: cluster 2024-09-16T14:32:18.732111+0000 mon.a (mon.0) 79 : cluster [INF] Activating manager daemon a 2024-09-16T14:32:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: cluster 2024-09-16T14:32:18.738997+0000 mon.a (mon.0) 80 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: cluster 2024-09-16T14:32:18.739211+0000 mon.a (mon.0) 81 : cluster [DBG] mgrmap e10: a(active, starting, since 0.00728759s) 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: audit 2024-09-16T14:32:18.741770+0000 mon.a (mon.0) 82 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: audit 2024-09-16T14:32:18.744109+0000 mon.a (mon.0) 83 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: audit 2024-09-16T14:32:18.745206+0000 mon.a (mon.0) 84 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: audit 2024-09-16T14:32:18.745616+0000 mon.a (mon.0) 85 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: audit 2024-09-16T14:32:18.745970+0000 mon.a (mon.0) 86 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-16T14:32:18.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:18 smithi019 bash[22501]: cluster 2024-09-16T14:32:18.772075+0000 mon.a (mon.0) 87 : cluster [INF] Manager daemon a is now available 2024-09-16T14:32:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:19 smithi019 bash[22501]: audit 2024-09-16T14:32:18.789848+0000 mon.a (mon.0) 88 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:20.248 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:19 smithi019 bash[22501]: audit 2024-09-16T14:32:18.792220+0000 mon.a (mon.0) 89 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:20.248 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:19 smithi019 bash[22501]: audit 2024-09-16T14:32:18.810817+0000 mon.a (mon.0) 90 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-09-16T14:32:20.248 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:19 smithi019 bash[22501]: audit 2024-09-16T14:32:18.813205+0000 mon.a (mon.0) 91 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-09-16T14:32:20.248 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:19 smithi019 bash[22501]: cluster 2024-09-16T14:32:19.743330+0000 mon.a (mon.0) 92 : cluster [DBG] mgrmap e11: a(active, since 1.0114s) 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout { 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout } 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:mgr epoch 9 is available 2024-09-16T14:32:20.366 INFO:teuthology.orchestra.run.smithi019.stdout:Generating a dashboard self-signed certificate... 2024-09-16T14:32:20.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: debug 2024-09-16T14:32:20.679+0000 7f6f1c0d9640 -1 log_channel(cephadm) log [ERR] : [16/Sep/2024:14:32:20] ENGINE Error in HTTPServer.serve 2024-09-16T14:32:20.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: Traceback (most recent call last): 2024-09-16T14:32:20.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T14:32:20.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: self._connections.run(self.expiration_interval) 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: self._run(expiration_interval) 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: s = self.context.wrap_socket( 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: return self.sslsocket_class._create( 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: self.do_handshake() 2024-09-16T14:32:20.730 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T14:32:20.731 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: self._sslobj.do_handshake() 2024-09-16T14:32:20.731 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22752]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T14:32:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22501]: audit 2024-09-16T14:32:19.743325+0000 mgr.a (mgr.14150) 1 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-16T14:32:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:20 smithi019 bash[22501]: audit 2024-09-16T14:32:19.755278+0000 mgr.a (mgr.14150) 2 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-16T14:32:22.100 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cephadm 2024-09-16T14:32:20.556058+0000 mgr.a (mgr.14150) 3 : cephadm [INF] [16/Sep/2024:14:32:20] ENGINE Bus STARTING 2024-09-16T14:32:22.100 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cephadm 2024-09-16T14:32:20.680015+0000 mgr.a (mgr.14150) 4 : cephadm [INF] [16/Sep/2024:14:32:20] ENGINE Serving on https://172.21.15.19:7150 2024-09-16T14:32:22.100 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cephadm 2024-09-16T14:32:20.683408+0000 mgr.a (mgr.14150) 5 : cephadm [ERR] [16/Sep/2024:14:32:20] ENGINE Error in HTTPServer.serve 2024-09-16T14:32:22.100 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: Traceback (most recent call last): 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: self._connections.run(self.expiration_interval) 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: self._run(expiration_interval) 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: new_conn = self._from_server_socket(self.server.socket) 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: s = self.context.wrap_socket( 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-16T14:32:22.101 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: return self.sslsocket_class._create( 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: self.do_handshake() 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: self._sslobj.do_handshake() 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cephadm 2024-09-16T14:32:20.781251+0000 mgr.a (mgr.14150) 6 : cephadm [INF] [16/Sep/2024:14:32:20] ENGINE Serving on http://172.21.15.19:8765 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cephadm 2024-09-16T14:32:20.781409+0000 mgr.a (mgr.14150) 7 : cephadm [INF] [16/Sep/2024:14:32:20] ENGINE Bus STARTED 2024-09-16T14:32:22.102 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:21 smithi019 bash[22501]: cluster 2024-09-16T14:32:20.801948+0000 mon.a (mon.0) 93 : cluster [DBG] mgrmap e12: a(active, since 2s) 2024-09-16T14:32:22.477 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-16T14:32:22.477 INFO:teuthology.orchestra.run.smithi019.stdout:Creating initial admin user... 2024-09-16T14:32:22.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:22 smithi019 bash[22501]: audit 2024-09-16T14:32:21.763950+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-16T14:32:22.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:22 smithi019 bash[22501]: audit 2024-09-16T14:32:21.907454+0000 mon.a (mon.0) 94 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:22.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:22 smithi019 bash[22501]: audit 2024-09-16T14:32:21.910183+0000 mon.a (mon.0) 95 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:24.717 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$3HjUPZzEGu2QvfShN6YGeORxdnElwTs/Ogpw3uaLeUSXZyxuhuJ56", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726497144, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-16T14:32:24.717 INFO:teuthology.orchestra.run.smithi019.stdout:Fetching dashboard port number... 2024-09-16T14:32:25.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:25 smithi019 bash[22501]: audit 2024-09-16T14:32:23.862133+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-16T14:32:25.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:25 smithi019 bash[22501]: audit 2024-09-16T14:32:24.133207+0000 mon.a (mon.0) 96 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:26.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: cluster 2024-09-16T14:32:25.137820+0000 mon.a (mon.0) 97 : cluster [DBG] mgrmap e13: a(active, since 6s) 2024-09-16T14:32:26.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: audit 2024-09-16T14:32:25.384657+0000 mon.a (mon.0) 98 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:26.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: audit 2024-09-16T14:32:25.385281+0000 mon.a (mon.0) 99 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi019", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:32:26.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: audit 2024-09-16T14:32:25.389304+0000 mon.a (mon.0) 100 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:26.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: audit 2024-09-16T14:32:25.390621+0000 mon.a (mon.0) 101 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi019", "caps": []}]: dispatch 2024-09-16T14:32:26.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:26 smithi019 bash[22501]: audit 2024-09-16T14:32:26.043650+0000 mon.a (mon.0) 102 : audit [DBG] from='client.? 172.21.15.19:0/739121321' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-16T14:32:26.574 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stdout 8443 2024-09-16T14:32:26.574 INFO:teuthology.orchestra.run.smithi019.stdout:firewalld does not appear to be present 2024-09-16T14:32:26.574 INFO:teuthology.orchestra.run.smithi019.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout:Ceph Dashboard is now available at: 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout: URL: https://smithi019.front.sepia.ceph.com:8443/ 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout: User: admin 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout: Password: 7cpkpt2tyb 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout:Saving cluster configuration to /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config directory 2024-09-16T14:32:26.576 INFO:teuthology.orchestra.run.smithi019.stdout:Enabling autotune for osd_memory_target 2024-09-16T14:32:27.457 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:27 smithi019 bash[22501]: cephadm 2024-09-16T14:32:26.415709+0000 mgr.a (mgr.14150) 10 : cephadm [INF] Deploying daemon agent.smithi019 on smithi019 2024-09-16T14:32:30.565 INFO:teuthology.orchestra.run.smithi019.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-16T14:32:30.565 INFO:teuthology.orchestra.run.smithi019.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-16T14:32:30.565 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.565 INFO:teuthology.orchestra.run.smithi019.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:32:30.565 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout:Or, if you are only running a single cluster on this host: 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-16T14:32:30.566 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout: ceph telemetry on 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout:For more information see: 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:32:30.567 INFO:teuthology.orchestra.run.smithi019.stdout:Bootstrap complete. 2024-09-16T14:32:30.613 INFO:tasks.cephadm:Fetching config... 2024-09-16T14:32:30.613 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:32:30.613 DEBUG:teuthology.orchestra.run.smithi019:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-16T14:32:30.620 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-16T14:32:30.620 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:32:30.620 DEBUG:teuthology.orchestra.run.smithi019:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-16T14:32:30.666 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-16T14:32:30.667 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:32:30.667 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd if=/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-16T14:32:30.723 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-16T14:32:30.723 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:32:30.723 DEBUG:teuthology.orchestra.run.smithi019:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-16T14:32:30.769 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-16T14:32:30.770 DEBUG:teuthology.orchestra.run.smithi019:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T14:32:30.829 INFO:teuthology.orchestra.run.smithi019.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:32:30.836 DEBUG:teuthology.orchestra.run.smithi139:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T14:32:30.860 INFO:teuthology.orchestra.run.smithi139.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:32:30.870 DEBUG:teuthology.orchestra.run.smithi162:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-16T14:32:30.894 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:30 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:30.894 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:30 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:30.896 INFO:teuthology.orchestra.run.smithi162.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCNDNfQmh2MC6RROS8Cax91ivaXKggyPalfvszewLpMbBNsOI0gC1OKDOnYgUVcK1k5W1nA/KfJbrIqoOY09hEhXL0+WIos90zcduVyzMMsy/YT6aH1bGjVzmYG/n5W9XQTj6LenPKwih6AunXmkEhsvhUg4Kz1H6LU6NR7md7/QvZoj2srlNDRZkYe+7gPSWExZO+N+Cbet6bemPPNXj67L9G3K9V5RI2UENgQkWefBTWznvbCl85+sdrnyDGLxZ6BKFp0K0uCFx5ijEDw7nbNqVrUmlY3S+G+zhV1pgWBkVzcoxdLpC6OrjKaqQCmgAeYNqex56a4J4541cqaVJSHvY09zsaXwL5hRxhcm476feHVPg6gY2aLQSSoCXoqpdjAZTWPI3+seBRIttGgK1eIMHRSSKZl/Bc+LxBBL+wqvvb7bpFpSdbj//9mMwQXvGdaB2pTiJqVRH6O+pBxGzsnKIyCzRONaMbM5T8pj4sGYWn+uDx385yDJbyExOYay+E= ceph-130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:32:30.907 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-16T14:32:31.148 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:30 smithi019 bash[22501]: audit 2024-09-16T14:32:29.999918+0000 mon.a (mon.0) 103 : audit [INF] from='client.? 172.21.15.19:0/2738019540' entity='client.admin' 2024-09-16T14:32:31.148 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:31.148 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:31.422 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:31.422 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:31.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:31.729 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:32:31 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:32:32.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.679378+0000 mon.a (mon.0) 104 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.683629+0000 mon.a (mon.0) 105 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.687247+0000 mon.a (mon.0) 106 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.708419+0000 mon.a (mon.0) 107 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.713215+0000 mon.a (mon.0) 108 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.716554+0000 mon.a (mon.0) 109 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.721613+0000 mon.a (mon.0) 110 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.725283+0000 mon.a (mon.0) 111 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.730810+0000 mon.a (mon.0) 112 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.753154+0000 mon.a (mon.0) 113 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:31.760158+0000 mon.a (mon.0) 114 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:32.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:32 smithi019 bash[22501]: audit 2024-09-16T14:32:32.028613+0000 mon.a (mon.0) 115 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:34 smithi019 bash[22501]: audit 2024-09-16T14:32:33.811640+0000 mon.a (mon.0) 116 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:35.568 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:32:37.114 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:36 smithi019 bash[22501]: audit 2024-09-16T14:32:35.921227+0000 mon.a (mon.0) 117 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:37.114 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:36 smithi019 bash[22501]: audit 2024-09-16T14:32:35.926984+0000 mon.a (mon.0) 118 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:39.311 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-16T14:32:39.311 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-16T14:32:39.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:39 smithi019 bash[22501]: audit 2024-09-16T14:32:38.680251+0000 mon.a (mon.0) 119 : audit [INF] from='client.? 172.21.15.19:0/1543636478' entity='client.admin' 2024-09-16T14:32:39.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:39 smithi019 bash[22501]: audit 2024-09-16T14:32:38.694891+0000 mon.a (mon.0) 120 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:39.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:39 smithi019 bash[22501]: audit 2024-09-16T14:32:38.703531+0000 mon.a (mon.0) 121 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:39.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:39 smithi019 bash[22501]: cluster 2024-09-16T14:32:38.746881+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-16T14:32:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:41 smithi019 bash[22501]: cluster 2024-09-16T14:32:40.747281+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-16T14:32:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:43 smithi019 bash[22501]: cluster 2024-09-16T14:32:42.747660+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-16T14:32:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:43 smithi019 bash[22501]: audit 2024-09-16T14:32:43.691850+0000 mon.a (mon.0) 122 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:43 smithi019 bash[22501]: audit 2024-09-16T14:32:43.702463+0000 mon.a (mon.0) 123 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:44.001 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:32:45.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:45 smithi019 bash[22501]: cluster 2024-09-16T14:32:44.748033+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-16T14:32:47.321 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi139 2024-09-16T14:32:47.321 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:32:47.321 DEBUG:teuthology.orchestra.run.smithi139:> dd of=/etc/ceph/ceph.conf 2024-09-16T14:32:47.327 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:32:47.327 DEBUG:teuthology.orchestra.run.smithi139:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:32:47.375 INFO:tasks.cephadm:Adding host smithi139 to orchestrator... 2024-09-16T14:32:47.376 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch host add smithi139 2024-09-16T14:32:47.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:46.712261+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:46.717641+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:46.718879+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:46.721878+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:46.722832+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: cephadm 2024-09-16T14:32:46.724012+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: cluster 2024-09-16T14:32:46.748375+0000 mgr.a (mgr.14150) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:47.222469+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:47.228145+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:47.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:47 smithi019 bash[22501]: audit 2024-09-16T14:32:47.234150+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:48.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:48 smithi019 bash[22501]: cephadm 2024-09-16T14:32:46.843900+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:32:48.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:48 smithi019 bash[22501]: cephadm 2024-09-16T14:32:46.968744+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:32:48.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:48 smithi019 bash[22501]: cephadm 2024-09-16T14:32:47.090349+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:32:49.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:49 smithi019 bash[22501]: cluster 2024-09-16T14:32:48.748855+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-16T14:32:52.046 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:32:52.182 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:51 smithi019 bash[22501]: cluster 2024-09-16T14:32:50.749407+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-16T14:32:53.831 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:53 smithi019 bash[22501]: cluster 2024-09-16T14:32:52.750001+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-16T14:32:56.221 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:55 smithi019 bash[22501]: cluster 2024-09-16T14:32:54.750429+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:32:56.221 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:55 smithi019 bash[22501]: audit 2024-09-16T14:32:55.490578+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:56.221 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:55 smithi019 bash[22501]: audit 2024-09-16T14:32:55.494515+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:56.222 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:55 smithi019 bash[22501]: audit 2024-09-16T14:32:55.499606+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:32:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:57 smithi019 bash[22501]: audit 2024-09-16T14:32:56.552488+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi139", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:32:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:57 smithi019 bash[22501]: cluster 2024-09-16T14:32:56.750703+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:00.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:59 smithi019 bash[22501]: cephadm 2024-09-16T14:32:57.855127+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi139 2024-09-16T14:33:00.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:32:59 smithi019 bash[22501]: cluster 2024-09-16T14:32:58.751070+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:00.563 INFO:teuthology.orchestra.run.smithi019.stdout:Added host 'smithi139' with addr '172.21.15.139' 2024-09-16T14:33:01.131 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T14:33:01.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:01 smithi019 bash[22501]: audit 2024-09-16T14:33:00.561187+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:01.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:01 smithi019 bash[22501]: cephadm 2024-09-16T14:33:00.562083+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi139 2024-09-16T14:33:01.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:01 smithi019 bash[22501]: audit 2024-09-16T14:33:00.562875+0000 mon.a (mon.0) 135 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:01.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:01 smithi019 bash[22501]: cluster 2024-09-16T14:33:00.751475+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:01.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:01 smithi019 bash[22501]: audit 2024-09-16T14:33:00.871471+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:03.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.193914+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:03.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.199259+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:03.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.200667+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi139", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.202716+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.204558+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:02.207057+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:02.385450+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:02.539734+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:02.686751+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: cluster 2024-09-16T14:33:02.751892+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.834345+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.840318+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.843261+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]: dispatch 2024-09-16T14:33:03.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:03 smithi019 bash[22501]: audit 2024-09-16T14:33:02.849866+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]': finished 2024-09-16T14:33:05.804 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:33:06.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: cephadm 2024-09-16T14:33:03.840759+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Deploying daemon agent.smithi139 on smithi139 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: cluster 2024-09-16T14:33:04.752305+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-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.794590+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.800900+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.806971+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.865053+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.868174+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.869447+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.877190+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.933672+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:06.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.937336+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:06.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.938577+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:06.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:04.946056+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:06.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:05 smithi019 bash[22501]: audit 2024-09-16T14:33:05.150167+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:07.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:07 smithi019 bash[22501]: audit 2024-09-16T14:33:06.232194+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:07.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:07 smithi019 bash[22501]: audit 2024-09-16T14:33:06.240319+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:07.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:07 smithi019 bash[22501]: cluster 2024-09-16T14:33:06.752717+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:08.756 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:33:08.756 INFO:teuthology.orchestra.run.smithi019.stdout:[{"addr": "172.21.15.19", "hostname": "smithi019", "labels": [], "status": ""}, {"addr": "172.21.15.139", "hostname": "smithi139", "labels": [], "status": ""}] 2024-09-16T14:33:09.315 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi162 2024-09-16T14:33:09.316 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:33:09.316 DEBUG:teuthology.orchestra.run.smithi162:> dd of=/etc/ceph/ceph.conf 2024-09-16T14:33:09.322 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:33:09.322 DEBUG:teuthology.orchestra.run.smithi162:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:09.369 INFO:tasks.cephadm:Adding host smithi162 to orchestrator... 2024-09-16T14:33:09.370 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch host add smithi162 2024-09-16T14:33:10.152 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:09 smithi019 bash[22501]: cluster 2024-09-16T14:33:08.753157+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:10.152 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:09 smithi019 bash[22501]: audit 2024-09-16T14:33:08.754844+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:10.152 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:09 smithi019 bash[22501]: audit 2024-09-16T14:33:08.815442+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:11 smithi019 bash[22501]: cluster 2024-09-16T14:33:10.753646+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-16T14:33:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:13 smithi019 bash[22501]: cluster 2024-09-16T14:33:12.754108+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-16T14:33:14.405 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:33:15.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:15 smithi019 bash[22501]: cluster 2024-09-16T14:33:14.754492+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:15.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:15 smithi019 bash[22501]: audit 2024-09-16T14:33:15.607835+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:15.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:15 smithi019 bash[22501]: audit 2024-09-16T14:33:15.614522+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:15.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:15 smithi019 bash[22501]: audit 2024-09-16T14:33:15.621264+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:18.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:17 smithi019 bash[22501]: cluster 2024-09-16T14:33:16.754821+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:18 smithi019 bash[22501]: audit 2024-09-16T14:33:17.337761+0000 mgr.a (mgr.14150) 45 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:19 smithi019 bash[22501]: cephadm 2024-09-16T14:33:18.629038+0000 mgr.a (mgr.14150) 46 : cephadm [INF] Deploying cephadm binary to smithi162 2024-09-16T14:33:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:19 smithi019 bash[22501]: cluster 2024-09-16T14:33:18.755189+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:19 smithi019 bash[22501]: audit 2024-09-16T14:33:19.137665+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:19 smithi019 bash[22501]: audit 2024-09-16T14:33:19.142964+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:21.263 INFO:teuthology.orchestra.run.smithi019.stdout:Added host 'smithi162' with addr '172.21.15.162' 2024-09-16T14:33:21.884 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-16T14:33:22.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:21 smithi019 bash[22501]: cluster 2024-09-16T14:33:20.755453+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:22.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:21 smithi019 bash[22501]: audit 2024-09-16T14:33:21.260787+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:22.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:21 smithi019 bash[22501]: audit 2024-09-16T14:33:21.262320+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:22.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:21 smithi019 bash[22501]: audit 2024-09-16T14:33:21.597502+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:23.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:22 smithi019 bash[22501]: cephadm 2024-09-16T14:33:21.261571+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Added host smithi162 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: cluster 2024-09-16T14:33:22.755833+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:22.937260+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:22.943412+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:22.944790+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi162", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:22.946973+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:22.948743+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: cephadm 2024-09-16T14:33:22.951294+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: cephadm 2024-09-16T14:33:23.131840+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: cephadm 2024-09-16T14:33:23.283692+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:24.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: cephadm 2024-09-16T14:33:23.428606+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:24.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:23.573871+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:24.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:23.579940+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:24.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:23.583156+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]: dispatch 2024-09-16T14:33:24.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:23 smithi019 bash[22501]: audit 2024-09-16T14:33:23.587844+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]': finished 2024-09-16T14:33:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:24 smithi019 bash[22501]: cephadm 2024-09-16T14:33:24.588136+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Deploying daemon agent.smithi162 on smithi162 2024-09-16T14:33:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:24 smithi019 bash[22501]: cluster 2024-09-16T14:33:24.756238+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-16T14:33:26.553 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:33:26.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.484560+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.490193+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.495437+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.582399+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.586959+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.588439+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.596126+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.681076+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.684823+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.686300+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.693934+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.781967+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.787257+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.793702+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:26.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:26 smithi019 bash[22501]: audit 2024-09-16T14:33:25.836018+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:27.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:27 smithi019 bash[22501]: cluster 2024-09-16T14:33:26.756653+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:27.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:27 smithi019 bash[22501]: audit 2024-09-16T14:33:26.911313+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:27.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:27 smithi019 bash[22501]: audit 2024-09-16T14:33:26.918697+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:29.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:29 smithi019 bash[22501]: cluster 2024-09-16T14:33:28.757061+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:29.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:29 smithi019 bash[22501]: audit 2024-09-16T14:33:28.821425+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:30.813 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:33:30.813 INFO:teuthology.orchestra.run.smithi019.stdout:[{"addr": "172.21.15.19", "hostname": "smithi019", "labels": [], "status": ""}, {"addr": "172.21.15.139", "hostname": "smithi139", "labels": [], "status": ""}, {"addr": "172.21.15.162", "hostname": "smithi162", "labels": [], "status": ""}] 2024-09-16T14:33:31.439 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-16T14:33:31.439 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-16T14:33:32.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:31 smithi019 bash[22501]: cluster 2024-09-16T14:33:30.757317+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:32.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:31 smithi019 bash[22501]: audit 2024-09-16T14:33:30.812087+0000 mgr.a (mgr.14150) 60 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:34.124 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:33 smithi019 bash[22501]: cluster 2024-09-16T14:33:32.757724+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-16T14:33:36.097 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:33:36.209 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:35 smithi019 bash[22501]: cluster 2024-09-16T14:33:34.758139+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:37.098 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:36 smithi019 bash[22501]: audit 2024-09-16T14:33:35.825069+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:37.098 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:36 smithi019 bash[22501]: audit 2024-09-16T14:33:35.835545+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:37.098 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:36 smithi019 bash[22501]: audit 2024-09-16T14:33:35.843797+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:37 smithi019 bash[22501]: cluster 2024-09-16T14:33:36.758563+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:39.836 INFO:teuthology.orchestra.run.smithi019.stderr:adjusted tunables profile to default 2024-09-16T14:33:40.097 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:39 smithi019 bash[22501]: cluster 2024-09-16T14:33:38.758963+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:40.097 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:39 smithi019 bash[22501]: audit 2024-09-16T14:33:39.047600+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T14:33:40.499 INFO:tasks.cephadm:Adding mon.a on smithi019 2024-09-16T14:33:40.499 INFO:tasks.cephadm:Adding mon.b on smithi139 2024-09-16T14:33:40.499 INFO:tasks.cephadm:Adding mon.c on smithi162 2024-09-16T14:33:40.500 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c' 2024-09-16T14:33:41.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:40 smithi019 bash[22501]: audit 2024-09-16T14:33:39.834693+0000 mon.a (mon.0) 200 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T14:33:41.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:40 smithi019 bash[22501]: cluster 2024-09-16T14:33:39.834845+0000 mon.a (mon.0) 201 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:41.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:40 smithi019 bash[22501]: audit 2024-09-16T14:33:39.868777+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:41.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:40 smithi019 bash[22501]: audit 2024-09-16T14:33:39.874355+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:41.663 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:42.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:41 smithi019 bash[22501]: cluster 2024-09-16T14:33:40.759385+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:43.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:42 smithi019 bash[22501]: cluster 2024-09-16T14:33:42.759738+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:44.259 INFO:teuthology.orchestra.run.smithi162.stdout:Scheduled mon update... 2024-09-16T14:33:44.868 DEBUG:teuthology.orchestra.run.smithi139:mon.b> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.b.service 2024-09-16T14:33:44.871 DEBUG:teuthology.orchestra.run.smithi162:mon.c> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.c.service 2024-09-16T14:33:44.873 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T14:33:44.873 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.246948+0000 mgr.a (mgr.14150) 67 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: cephadm 2024-09-16T14:33:44.252116+0000 mgr.a (mgr.14150) 68 : cephadm [INF] Saving service mon spec with placement smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c;count:3 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.257375+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.259004+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.264165+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.266086+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.273826+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.278441+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: audit 2024-09-16T14:33:44.280150+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:45.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: cephadm 2024-09-16T14:33:44.281997+0000 mgr.a (mgr.14150) 69 : cephadm [INF] Deploying daemon mon.c on smithi162 2024-09-16T14:33:45.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:45 smithi019 bash[22501]: cluster 2024-09-16T14:33:44.760188+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:46.083 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:47.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:45.988366+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:45.994431+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:46.002384+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:46.472745+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:46.478689+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: audit 2024-09-16T14:33:46.486688+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:47.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:46 smithi019 bash[22501]: cluster 2024-09-16T14:33:46.760614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:50.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:49 smithi019 bash[22501]: cluster 2024-09-16T14:33:48.760999+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:50.859 INFO:teuthology.orchestra.run.smithi162.stderr:dumped monmap epoch 1 2024-09-16T14:33:50.860 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-09-16T14:33:50.860 INFO:teuthology.orchestra.run.smithi162.stdout:{"epoch":1,"fsid":"130fbd00-7438-11ef-bceb-c7b262605968","modified":"2024-09-16T14:31:15.501973Z","created":"2024-09-16T14:31:15.501973Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:3300","nonce":0},{"type":"v1","addr":"172.21.15.19:6789","nonce":0}]},"addr":"172.21.15.19:6789/0","public_addr":"172.21.15.19:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-16T14:33:51.159 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:50 smithi162 systemd[1]: Started Ceph mon.c for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:33:52.233 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: cluster 2024-09-16T14:33:50.761448+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:50.858879+0000 mon.a (mon.0) 217 : audit [DBG] from='client.? 172.21.15.162:0/1559408681' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:51.000830+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:51.003847+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:51.007175+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:51.008158+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:52.298 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:51 smithi019 bash[22501]: audit 2024-09-16T14:33:51.009189+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.661 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.640+0000 7fe37d311b00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T14:33:52.661 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.640+0000 7fe37d311b00 0 ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable), process ceph-mon, pid 7 2024-09-16T14:33:52.661 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.640+0000 7fe37d311b00 0 pidfile_write: ignore empty --pid-file 2024-09-16T14:33:52.661 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.644+0000 7fe37d311b00 0 load: jerasure load: lrc 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Git sha 0 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Compile date 2024-09-13 16:45:57 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: DB SUMMARY 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: DB Session ID: AI5O2AF1VX6LNFRTG1AC 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: CURRENT file: CURRENT 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-09-16T14:33:52.662 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.error_if_exists: 0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.create_if_missing: 0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.env: 0x55af2540bbc0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.info_log: 0x55af26c4cbe0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.statistics: (nil) 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.use_fsync: 0 2024-09-16T14:33:52.663 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T14:33:52.665 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T14:33:52.665 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.db_log_dir: 2024-09-16T14:33:52.666 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.wal_dir: 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.write_buffer_manager: 0x55af26c5a320 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T14:33:52.667 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.unordered_write: 0 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.row_cache: None 2024-09-16T14:33:52.668 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.wal_filter: None 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.two_write_queues: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.wal_compression: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.atomic_flush: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T14:33:52.669 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T14:33:52.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_open_files: -1 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Compression algorithms supported: 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kZSTD supported: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kXpressCompression supported: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T14:33:52.671 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kZlibCompression supported: 1 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.merge_operator: 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_filter: None 2024-09-16T14:33:52.672 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55af26c4c7e0) 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cache_index_and_filter_blocks: 1 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: pin_top_level_index_and_filter: 1 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: index_type: 0 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: data_block_index_type: 0 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: index_shortening: 1 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T14:33:52.673 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: checksum: 4 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: no_block_cache: 0 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_cache: 0x55af26c43350 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_cache_name: BinnedLRUCache 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_cache_options: 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: capacity : 536870912 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: num_shard_bits : 4 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: strict_capacity_limit : 0 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: high_pri_pool_ratio: 0.000 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_cache_compressed: (nil) 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: persistent_cache: (nil) 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_size: 4096 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_size_deviation: 10 2024-09-16T14:33:52.674 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_restart_interval: 16 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: index_block_restart_interval: 1 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: metadata_block_size: 4096 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: partition_filters: 0 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: use_delta_encoding: 1 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: filter_policy: bloomfilter 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: whole_key_filtering: 1 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: verify_compression: 0 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: read_amp_bytes_per_bit: 0 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: format_version: 5 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: enable_index_compression: 1 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: block_align: 0 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: max_auto_readahead_size: 262144 2024-09-16T14:33:52.675 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: prepopulate_block_cache: 0 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: initial_auto_readahead_size: 8192 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: num_file_reads_for_auto_readahead: 2 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression: NoCompression 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.num_levels: 7 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T14:33:52.676 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T14:33:52.677 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T14:33:52.678 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T14:33:52.679 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T14:33:52.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.bloom_locality: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.ttl: 2592000 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enable_blob_files: false 2024-09-16T14:33:52.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.min_blob_size: 0 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 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-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 73e28d02-2f73-499a-aff2-b67819c0a06e 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497232650934, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-16T14:33:52.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497232651435, "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": 1726497232, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "73e28d02-2f73-499a-aff2-b67819c0a06e", "db_session_id": "AI5O2AF1VX6LNFRTG1AC", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497232651554, "job": 1, "event": "recovery_finished"} 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.648+0000 7fe37d311b00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 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-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55af26c6ce00 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 4 rocksdb: DB pointer 0x55af26d64000 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe3730dc640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe3730dc640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: ** DB Stats ** 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:33:52.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: ** Compaction Stats [default] ** 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: ** Compaction Stats [default] ** 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:52.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Cumulative compaction: 0.00 GB write, 0.37 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Interval compaction: 0.00 GB write, 0.37 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: Block cache BinnedLRUCache@0x55af26c43350#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-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 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-16T14:33:52.685 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T14:33:52.686 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 0 mon.c does not exist in monmap, will attempt to join an existing cluster 2024-09-16T14:33:52.686 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 0 using public_addr v2:172.21.15.162:0/0 -> [v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0] 2024-09-16T14:33:52.686 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 0 starting mon.c rank -1 at public addrs [v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0] at bind addrs [v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:33:52.686 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.652+0000 7fe37d311b00 1 mon.c@-1(???) e0 preinit fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:33:52.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).mds e1 new map 2024-09-16T14:33:52.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).mds e1 print_map 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: e1 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: legacy client fscid: -1 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: No filesystems configured 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 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-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-16T14:33:52.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 0 mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:46.712261+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:46.717641+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:46.718879+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:46.721878+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:46.722832+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:32:46.724012+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:33:52.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:46.748375+0000 mgr.a (mgr.14150) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:47.222469+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:47.228145+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:47.234150+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:32:46.843900+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:32:46.968744+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:32:47.090349+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:48.748855+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-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:50.749407+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-16T14:33:52.938 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:52.750001+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-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:54.750429+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:55.490578+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:55.494515+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:55.499606+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:32:56.552488+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi139", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:56.750703+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:32:57.855127+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi139 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:32:58.751070+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:00.561187+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:00.562083+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi139 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:00.562875+0000 mon.a (mon.0) 135 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.939 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:00.751475+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:00.871471+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.193914+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.199259+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.200667+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi139", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.202716+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.204558+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:02.207057+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:02.385450+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:02.539734+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:02.686751+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:02.751892+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.834345+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.940 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.840318+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.843261+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]: dispatch 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:02.849866+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]': finished 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:03.840759+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Deploying daemon agent.smithi139 on smithi139 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:04.752305+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-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.794590+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.800900+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.806971+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.865053+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.868174+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.869447+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.877190+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.941 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.933672+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.937336+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.938577+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:04.946056+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:05.150167+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:06.232194+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:06.240319+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:06.752717+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.942 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:08.753157+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:08.754844+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:08.815442+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:10.753646+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-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:12.754108+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-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:14.754492+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:15.607835+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:15.614522+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:15.621264+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:16.754821+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:17.337761+0000 mgr.a (mgr.14150) 45 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:18.629038+0000 mgr.a (mgr.14150) 46 : cephadm [INF] Deploying cephadm binary to smithi162 2024-09-16T14:33:52.943 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:18.755189+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:19.137665+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:19.142964+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:20.755453+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:21.260787+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:21.262320+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:21.597502+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:21.261571+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Added host smithi162 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:22.755833+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:22.937260+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:22.943412+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.944 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:22.944790+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi162", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:22.946973+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:22.948743+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:22.951294+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:23.131840+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:23.283692+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:23.428606+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:23.573871+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:23.579940+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:23.583156+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]: dispatch 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:23.587844+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]': finished 2024-09-16T14:33:52.945 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:24.588136+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Deploying daemon agent.smithi162 on smithi162 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:24.756238+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-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.484560+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.490193+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.495437+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.582399+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.586959+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.588439+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.596126+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.681076+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.684823+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.686300+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.693934+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.946 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.781967+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.787257+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.793702+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:25.836018+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:26.756653+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:26.911313+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:26.918697+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:28.757061+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:28.821425+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:30.757317+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:30.812087+0000 mgr.a (mgr.14150) 60 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:32.757724+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-16T14:33:52.947 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:34.758139+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:35.825069+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:35.835545+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:35.843797+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:36.758563+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:38.758963+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:39.047600+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:39.834693+0000 mon.a (mon.0) 200 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:39.834845+0000 mon.a (mon.0) 201 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:39.868777+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:39.874355+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.948 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:40.759385+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:42.759738+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.246948+0000 mgr.a (mgr.14150) 67 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:44.252116+0000 mgr.a (mgr.14150) 68 : cephadm [INF] Saving service mon spec with placement smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c;count:3 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.257375+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.259004+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.264165+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.266086+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.273826+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.278441+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:44.280150+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cephadm 2024-09-16T14:33:44.281997+0000 mgr.a (mgr.14150) 69 : cephadm [INF] Deploying daemon mon.c on smithi162 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:44.760188+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.949 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:45.988366+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:45.994431+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:46.002384+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:46.472745+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:46.478689+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:46.486688+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:46.760614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:48.760999+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: cluster 2024-09-16T14:33:50.761448+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:50.858879+0000 mon.a (mon.0) 217 : audit [DBG] from='client.? 172.21.15.162:0/1559408681' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:51.000830+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:51.003847+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:51.007175+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:51.008158+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:52.950 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: audit 2024-09-16T14:33:51.009189+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:52.951 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:52 smithi162 bash[23377]: debug 2024-09-16T14:33:52.680+0000 7fe3760e2640 1 mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-16T14:33:52.951 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-16T14:33:52.951 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-16T14:33:55.585 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:55 smithi139 systemd[1]: Started Ceph mon.b for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.526+0000 7fc96ae02b00 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.526+0000 7fc96ae02b00 0 ceph version 18.2.4-845-ge4e227b3 (e4e227b37858f5109138494e01e5ba1ba7b8ffe8) reef (stable), process ceph-mon, pid 7 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.526+0000 7fc96ae02b00 0 pidfile_write: ignore empty --pid-file 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 0 load: jerasure load: lrc 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: RocksDB version: 7.9.2 2024-09-16T14:33:56.546 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Git sha 0 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Compile date 2024-09-13 16:45:57 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: DB SUMMARY 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: DB Session ID: PUNHY8J9A4Z09XU4D64E 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: CURRENT file: CURRENT 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: IDENTITY file: IDENTITY 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-b/store.db dir, Total Num: 0, files: 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-b/store.db: 000004.log size: 511 ; 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.error_if_exists: 0 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.create_if_missing: 0 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.paranoid_checks: 1 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-16T14:33:56.547 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.env: 0x56031720bbc0 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.fs: PosixFileSystem 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.info_log: 0x5603188fcbe0 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.statistics: (nil) 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.use_fsync: 0 2024-09-16T14:33:56.548 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_log_file_size: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_fallocate: 1 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.use_direct_reads: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-16T14:33:56.550 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.create_missing_column_families: 0 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.db_log_dir: 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.wal_dir: 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.advise_random_on_open: 1 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.write_buffer_manager: 0x56031890a320 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-16T14:33:56.551 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.rate_limiter: (nil) 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.unordered_write: 0 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-16T14:33:56.552 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.row_cache: None 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.wal_filter: None 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.two_write_queues: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.manual_wal_flush: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.wal_compression: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.atomic_flush: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-16T14:33:56.553 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.log_readahead_size: 0 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_background_jobs: 2 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_background_compactions: -1 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_subcompactions: 1 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-16T14:33:56.554 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_total_wal_size: 0 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_open_files: -1 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bytes_per_sync: 0 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_background_flushes: -1 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Compression algorithms supported: 2024-09-16T14:33:56.555 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kZSTD supported: 0 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kXpressCompression supported: 0 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kBZip2Compression supported: 0 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kLZ4Compression supported: 1 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kZlibCompression supported: 1 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: kSnappyCompression supported: 1 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-b/store.db/MANIFEST-000005 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-16T14:33:56.556 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.merge_operator: 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_filter: None 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_filter_factory: None 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5603188fc7e0) 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cache_index_and_filter_blocks: 1 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: pin_top_level_index_and_filter: 1 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: index_type: 0 2024-09-16T14:33:56.557 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: data_block_index_type: 0 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: index_shortening: 1 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: data_block_hash_table_util_ratio: 0.750000 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: checksum: 4 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: no_block_cache: 0 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_cache: 0x5603188f31f0 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_cache_name: BinnedLRUCache 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_cache_options: 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: capacity : 536870912 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: num_shard_bits : 4 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: strict_capacity_limit : 0 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: high_pri_pool_ratio: 0.000 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_cache_compressed: (nil) 2024-09-16T14:33:56.558 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: persistent_cache: (nil) 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_size: 4096 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_size_deviation: 10 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_restart_interval: 16 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: index_block_restart_interval: 1 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: metadata_block_size: 4096 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: partition_filters: 0 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: use_delta_encoding: 1 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: filter_policy: bloomfilter 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: whole_key_filtering: 1 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: verify_compression: 0 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: read_amp_bytes_per_bit: 0 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: format_version: 5 2024-09-16T14:33:56.559 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: enable_index_compression: 1 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: block_align: 0 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: max_auto_readahead_size: 262144 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: prepopulate_block_cache: 0 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: initial_auto_readahead_size: 8192 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: num_file_reads_for_auto_readahead: 2 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression: NoCompression 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.num_levels: 7 2024-09-16T14:33:56.560 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-16T14:33:56.561 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.level: 32767 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.enabled: false 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-16T14:33:56.562 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-16T14:33:56.563 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.arena_block_size: 1048576 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-16T14:33:56.564 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.inplace_update_support: 0 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.bloom_locality: 0 2024-09-16T14:33:56.565 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.max_successive_merges: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.force_consistency_checks: 1 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.ttl: 2592000 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enable_blob_files: false 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.min_blob_size: 0 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_file_size: 268435456 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-16T14:33:56.566 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 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-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 7076d624-fd0a-4b2e-9cd7-4976a73763f9 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497236535648, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.530+0000 7fc96ae02b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497236536119, "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": 1726497236, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "7076d624-fd0a-4b2e-9cd7-4976a73763f9", "db_session_id": "PUNHY8J9A4Z09XU4D64E", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726497236536249, "job": 1, "event": "recovery_finished"} 2024-09-16T14:33:56.567 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 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-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56031891ce00 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 4 rocksdb: DB pointer 0x560318a14000 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 0 mon.b does not exist in monmap, will attempt to join an existing cluster 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc960bcd640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc960bcd640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: ** DB Stats ** 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.568 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: ** Compaction Stats [default] ** 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: ** Compaction Stats [default] ** 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-16T14:33:56.569 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: AddFile(Total Files): cumulative 0, interval 0 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: AddFile(Keys): cumulative 0, interval 0 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Cumulative compaction: 0.00 GB write, 0.46 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Interval compaction: 0.00 GB write, 0.46 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: Block cache BinnedLRUCache@0x5603188f31f0#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-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 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-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: ** File Read Latency Histogram By Level [default] ** 2024-09-16T14:33:56.570 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 0 using public_addr v2:172.21.15.139:0/0 -> [v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0] 2024-09-16T14:33:56.571 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.534+0000 7fc96ae02b00 0 starting mon.b rank -1 at public addrs [v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0] at bind addrs [v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0] mon_data /var/lib/ceph/mon/ceph-b fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:33:56.571 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.538+0000 7fc96ae02b00 1 mon.b@-1(???) e0 preinit fsid 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:33:56.589 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).mds e1 new map 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).mds e1 print_map 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: e1 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: legacy client fscid: -1 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: No filesystems configured 2024-09-16T14:33:56.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 1 mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 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-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 1 mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 1 mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 1 mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 1 mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.558+0000 7fc963bd3640 0 mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:46.712261+0000 mgr.a (mgr.14150) 15 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:46.717641+0000 mon.a (mon.0) 124 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:46.718879+0000 mon.a (mon.0) 125 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:46.721878+0000 mon.a (mon.0) 126 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:46.722832+0000 mon.a (mon.0) 127 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:32:46.724012+0000 mgr.a (mgr.14150) 16 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:33:56.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:46.748375+0000 mgr.a (mgr.14150) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:47.222469+0000 mon.a (mon.0) 128 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:47.228145+0000 mon.a (mon.0) 129 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:47.234150+0000 mon.a (mon.0) 130 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:32:46.843900+0000 mgr.a (mgr.14150) 18 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:32:46.968744+0000 mgr.a (mgr.14150) 19 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:32:47.090349+0000 mgr.a (mgr.14150) 20 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:48.748855+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-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:50.749407+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-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:52.750001+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-16T14:33:56.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:54.750429+0000 mgr.a (mgr.14150) 24 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:55.490578+0000 mon.a (mon.0) 131 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:55.494515+0000 mon.a (mon.0) 132 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:55.499606+0000 mon.a (mon.0) 133 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:32:56.552488+0000 mgr.a (mgr.14150) 25 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi139", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:56.750703+0000 mgr.a (mgr.14150) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:32:57.855127+0000 mgr.a (mgr.14150) 27 : cephadm [INF] Deploying cephadm binary to smithi139 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:32:58.751070+0000 mgr.a (mgr.14150) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:00.561187+0000 mon.a (mon.0) 134 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:00.562083+0000 mgr.a (mgr.14150) 29 : cephadm [INF] Added host smithi139 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:00.562875+0000 mon.a (mon.0) 135 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:00.751475+0000 mgr.a (mgr.14150) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:00.871471+0000 mon.a (mon.0) 136 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.859 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.193914+0000 mon.a (mon.0) 137 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.199259+0000 mon.a (mon.0) 138 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.200667+0000 mon.a (mon.0) 139 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi139", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.202716+0000 mon.a (mon.0) 140 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.204558+0000 mon.a (mon.0) 141 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:02.207057+0000 mgr.a (mgr.14150) 31 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:02.385450+0000 mgr.a (mgr.14150) 32 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:02.539734+0000 mgr.a (mgr.14150) 33 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:02.686751+0000 mgr.a (mgr.14150) 34 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:02.751892+0000 mgr.a (mgr.14150) 35 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.860 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.834345+0000 mon.a (mon.0) 142 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.840318+0000 mon.a (mon.0) 143 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.843261+0000 mon.a (mon.0) 144 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]: dispatch 2024-09-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:02.849866+0000 mon.a (mon.0) 145 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi139", "caps": []}]': finished 2024-09-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:03.840759+0000 mgr.a (mgr.14150) 36 : cephadm [INF] Deploying daemon agent.smithi139 on smithi139 2024-09-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:04.752305+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-16T14:33:56.861 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.794590+0000 mon.a (mon.0) 146 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.800900+0000 mon.a (mon.0) 147 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.806971+0000 mon.a (mon.0) 148 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.865053+0000 mon.a (mon.0) 149 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.868174+0000 mon.a (mon.0) 150 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.869447+0000 mon.a (mon.0) 151 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.877190+0000 mon.a (mon.0) 152 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.933672+0000 mon.a (mon.0) 153 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.937336+0000 mon.a (mon.0) 154 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.938577+0000 mon.a (mon.0) 155 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:04.946056+0000 mon.a (mon.0) 156 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:05.150167+0000 mon.a (mon.0) 157 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:06.232194+0000 mon.a (mon.0) 158 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.862 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:06.240319+0000 mon.a (mon.0) 159 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:06.752717+0000 mgr.a (mgr.14150) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:08.753157+0000 mgr.a (mgr.14150) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:08.754844+0000 mgr.a (mgr.14150) 40 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:08.815442+0000 mon.a (mon.0) 160 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:10.753646+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-16T14:33:56.863 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:12.754108+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-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:14.754492+0000 mgr.a (mgr.14150) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:15.607835+0000 mon.a (mon.0) 161 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:15.614522+0000 mon.a (mon.0) 162 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:15.621264+0000 mon.a (mon.0) 163 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:16.754821+0000 mgr.a (mgr.14150) 44 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:17.337761+0000 mgr.a (mgr.14150) 45 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:18.629038+0000 mgr.a (mgr.14150) 46 : cephadm [INF] Deploying cephadm binary to smithi162 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:18.755189+0000 mgr.a (mgr.14150) 47 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:19.137665+0000 mon.a (mon.0) 164 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:19.142964+0000 mon.a (mon.0) 165 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:20.755453+0000 mgr.a (mgr.14150) 48 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:21.260787+0000 mon.a (mon.0) 166 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.864 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:21.262320+0000 mon.a (mon.0) 167 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:21.597502+0000 mon.a (mon.0) 168 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:21.261571+0000 mgr.a (mgr.14150) 49 : cephadm [INF] Added host smithi162 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:22.755833+0000 mgr.a (mgr.14150) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:22.937260+0000 mon.a (mon.0) 169 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:22.943412+0000 mon.a (mon.0) 170 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:22.944790+0000 mon.a (mon.0) 171 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi162", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:22.946973+0000 mon.a (mon.0) 172 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:22.948743+0000 mon.a (mon.0) 173 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:22.951294+0000 mgr.a (mgr.14150) 51 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:23.131840+0000 mgr.a (mgr.14150) 52 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:23.283692+0000 mgr.a (mgr.14150) 53 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:23.428606+0000 mgr.a (mgr.14150) 54 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:33:56.865 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:23.573871+0000 mon.a (mon.0) 174 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:23.579940+0000 mon.a (mon.0) 175 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:23.583156+0000 mon.a (mon.0) 176 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]: dispatch 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:23.587844+0000 mon.a (mon.0) 177 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi162", "caps": []}]': finished 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:24.588136+0000 mgr.a (mgr.14150) 55 : cephadm [INF] Deploying daemon agent.smithi162 on smithi162 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:24.756238+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-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.484560+0000 mon.a (mon.0) 178 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.490193+0000 mon.a (mon.0) 179 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.495437+0000 mon.a (mon.0) 180 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.582399+0000 mon.a (mon.0) 181 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.586959+0000 mon.a (mon.0) 182 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.588439+0000 mon.a (mon.0) 183 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.596126+0000 mon.a (mon.0) 184 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.866 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.681076+0000 mon.a (mon.0) 185 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.684823+0000 mon.a (mon.0) 186 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.686300+0000 mon.a (mon.0) 187 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.693934+0000 mon.a (mon.0) 188 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.781967+0000 mon.a (mon.0) 189 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.787257+0000 mon.a (mon.0) 190 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.793702+0000 mon.a (mon.0) 191 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:25.836018+0000 mon.a (mon.0) 192 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:26.756653+0000 mgr.a (mgr.14150) 57 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:26.911313+0000 mon.a (mon.0) 193 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:26.918697+0000 mon.a (mon.0) 194 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:28.757061+0000 mgr.a (mgr.14150) 58 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:28.821425+0000 mon.a (mon.0) 195 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.867 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:30.757317+0000 mgr.a (mgr.14150) 59 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:30.812087+0000 mgr.a (mgr.14150) 60 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:32.757724+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-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:34.758139+0000 mgr.a (mgr.14150) 62 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:35.825069+0000 mon.a (mon.0) 196 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:35.835545+0000 mon.a (mon.0) 197 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:35.843797+0000 mon.a (mon.0) 198 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:36.758563+0000 mgr.a (mgr.14150) 63 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:38.758963+0000 mgr.a (mgr.14150) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:39.047600+0000 mon.a (mon.0) 199 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:39.834693+0000 mon.a (mon.0) 200 : audit [INF] from='client.? 172.21.15.19:0/367239232' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:39.834845+0000 mon.a (mon.0) 201 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:39.868777+0000 mon.a (mon.0) 202 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:39.874355+0000 mon.a (mon.0) 203 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.868 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:40.759385+0000 mgr.a (mgr.14150) 65 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:42.759738+0000 mgr.a (mgr.14150) 66 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.246948+0000 mgr.a (mgr.14150) 67 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:44.252116+0000 mgr.a (mgr.14150) 68 : cephadm [INF] Saving service mon spec with placement smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;smithi162:172.21.15.162=c;count:3 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.257375+0000 mon.a (mon.0) 204 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.259004+0000 mon.a (mon.0) 205 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.264165+0000 mon.a (mon.0) 206 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.266086+0000 mon.a (mon.0) 207 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:33:56.869 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.273826+0000 mon.a (mon.0) 208 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.278441+0000 mon.a (mon.0) 209 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:44.280150+0000 mon.a (mon.0) 210 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cephadm 2024-09-16T14:33:44.281997+0000 mgr.a (mgr.14150) 69 : cephadm [INF] Deploying daemon mon.c on smithi162 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:44.760188+0000 mgr.a (mgr.14150) 70 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:45.988366+0000 mon.a (mon.0) 211 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:45.994431+0000 mon.a (mon.0) 212 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:46.002384+0000 mon.a (mon.0) 213 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:46.472745+0000 mon.a (mon.0) 214 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:46.478689+0000 mon.a (mon.0) 215 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:46.486688+0000 mon.a (mon.0) 216 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:46.760614+0000 mgr.a (mgr.14150) 71 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:48.760999+0000 mgr.a (mgr.14150) 72 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.870 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: cluster 2024-09-16T14:33:50.761448+0000 mgr.a (mgr.14150) 73 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:50.858879+0000 mon.a (mon.0) 217 : audit [DBG] from='client.? 172.21.15.162:0/1559408681' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:51.000830+0000 mon.a (mon.0) 218 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:51.003847+0000 mon.a (mon.0) 219 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:51.007175+0000 mon.a (mon.0) 220 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:51.008158+0000 mon.a (mon.0) 221 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: audit 2024-09-16T14:33:51.009189+0000 mon.a (mon.0) 222 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:33:56.871 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:56 smithi139 bash[23309]: debug 2024-09-16T14:33:56.562+0000 7fc963bd3640 1 mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-16T14:33:58.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:52.689573+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:52.694062+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:33:58.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:52.694379+0000 mon.a (mon.0) 225 : cluster [INF] mon.a calling monitor election 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:52.714638+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:52.761880+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:53.689633+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:54.689043+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:54.690819+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:54.762285+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:55.689741+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:56.569842+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:56.690521+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:56.762661+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.570642+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.689941+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.735006+0000 mon.a (mon.0) 234 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.740910+0000 mon.a (mon.0) 235 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.758338+0000 mon.a (mon.0) 236 : cluster [DBG] fsmap 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.758392+0000 mon.a (mon.0) 237 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.758649+0000 mon.a (mon.0) 238 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: cluster 2024-09-16T14:33:57.758893+0000 mon.a (mon.0) 239 : cluster [INF] overall HEALTH_OK 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.765701+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.770947+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.776314+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.782442+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.790233+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.796419+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:33:57 smithi162 bash[23377]: audit 2024-09-16T14:33:57.801733+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:52.689573+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:52.694062+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:52.694379+0000 mon.a (mon.0) 225 : cluster [INF] mon.a calling monitor election 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:52.714638+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:52.761880+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:53.689633+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:54.689043+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:54.690819+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:54.762285+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:55.689741+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:56.569842+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:56.690521+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:56.762661+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.570642+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.689941+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.735006+0000 mon.a (mon.0) 234 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.740910+0000 mon.a (mon.0) 235 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.758338+0000 mon.a (mon.0) 236 : cluster [DBG] fsmap 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.758392+0000 mon.a (mon.0) 237 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.758649+0000 mon.a (mon.0) 238 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: cluster 2024-09-16T14:33:57.758893+0000 mon.a (mon.0) 239 : cluster [INF] overall HEALTH_OK 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.765701+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.770947+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.776314+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.782442+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.790233+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.796419+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:33:57 smithi019 bash[22501]: audit 2024-09-16T14:33:57.801733+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:52.689573+0000 mon.a (mon.0) 223 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:52.694062+0000 mon.a (mon.0) 224 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:33:58.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:52.694379+0000 mon.a (mon.0) 225 : cluster [INF] mon.a calling monitor election 2024-09-16T14:33:58.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:52.714638+0000 mon.a (mon.0) 226 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:52.761880+0000 mgr.a (mgr.14150) 75 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:53.689633+0000 mon.a (mon.0) 227 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:54.689043+0000 mon.a (mon.0) 228 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:54.690819+0000 mon.c (mon.1) 1 : cluster [INF] mon.c calling monitor election 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:54.762285+0000 mgr.a (mgr.14150) 76 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:55.689741+0000 mon.a (mon.0) 229 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:56.569842+0000 mon.a (mon.0) 230 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:56.690521+0000 mon.a (mon.0) 231 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:56.762661+0000 mgr.a (mgr.14150) 77 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.570642+0000 mon.a (mon.0) 232 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.689941+0000 mon.a (mon.0) 233 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.735006+0000 mon.a (mon.0) 234 : cluster [INF] mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.740910+0000 mon.a (mon.0) 235 : cluster [DBG] monmap e2: 2 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.758338+0000 mon.a (mon.0) 236 : cluster [DBG] fsmap 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.758392+0000 mon.a (mon.0) 237 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.758649+0000 mon.a (mon.0) 238 : cluster [DBG] mgrmap e13: a(active, since 99s) 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: cluster 2024-09-16T14:33:57.758893+0000 mon.a (mon.0) 239 : cluster [INF] overall HEALTH_OK 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.765701+0000 mon.a (mon.0) 240 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.770947+0000 mon.a (mon.0) 241 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.776314+0000 mon.a (mon.0) 242 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.782442+0000 mon.a (mon.0) 243 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.790233+0000 mon.a (mon.0) 244 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.796419+0000 mon.a (mon.0) 245 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.858 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:33:58 smithi139 bash[23309]: audit 2024-09-16T14:33:57.801733+0000 mon.a (mon.0) 246 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:33:58.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:33:58 smithi019 bash[22752]: debug 2024-09-16T14:33:58.686+0000 7f6f4fac0640 -1 mgr.server handle_report got status from non-daemon mon.c 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:57.876211+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:57.876610+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:57.877174+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.072547+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.072883+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.076755+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.285093+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.329627+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cephadm 2024-09-16T14:33:58.332220+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:33:58.586808+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:34:03.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:33:58.587181+0000 mon.a (mon.0) 262 : cluster [INF] mon.a calling monitor election 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:33:58.589671+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:33:58.606137+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:33:58.606252+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:33:58.763126+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:33:59.570236+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:00.570249+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:00.583555+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:00.763610+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:01.570432+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:02.570336+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:02.764056+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.570711+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.630110+0000 mon.a (mon.0) 270 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.635255+0000 mon.a (mon.0) 271 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],b=[v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.636248+0000 mon.a (mon.0) 272 : cluster [DBG] fsmap 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.636302+0000 mon.a (mon.0) 273 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.636565+0000 mon.a (mon.0) 274 : cluster [DBG] mgrmap e13: a(active, since 104s) 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: cluster 2024-09-16T14:34:03.636807+0000 mon.a (mon.0) 275 : cluster [INF] overall HEALTH_OK 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.643988+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.649846+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.655395+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.661112+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.665434+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.667493+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:03.937 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:03 smithi162 bash[23377]: audit 2024-09-16T14:34:03.669423+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:57.876211+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:57.876610+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:57.877174+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.072547+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.072883+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.076755+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.285093+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:03.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.329627+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cephadm 2024-09-16T14:33:58.332220+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:33:58.586808+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:33:58.587181+0000 mon.a (mon.0) 262 : cluster [INF] mon.a calling monitor election 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:33:58.589671+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:33:58.606137+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:33:58.606252+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:33:58.763126+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:33:59.570236+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:00.570249+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:00.583555+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:00.763610+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:01.570432+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:02.570336+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:02.764056+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.570711+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.630110+0000 mon.a (mon.0) 270 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.635255+0000 mon.a (mon.0) 271 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],b=[v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.636248+0000 mon.a (mon.0) 272 : cluster [DBG] fsmap 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.636302+0000 mon.a (mon.0) 273 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.636565+0000 mon.a (mon.0) 274 : cluster [DBG] mgrmap e13: a(active, since 104s) 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: cluster 2024-09-16T14:34:03.636807+0000 mon.a (mon.0) 275 : cluster [INF] overall HEALTH_OK 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.643988+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.649846+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.655395+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.661112+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.665434+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:03.982 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.667493+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:03.983 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:03 smithi019 bash[22501]: audit 2024-09-16T14:34:03.669423+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:57.876211+0000 mgr.a (mgr.14150) 78 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:57.876610+0000 mgr.a (mgr.14150) 79 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:57.877174+0000 mgr.a (mgr.14150) 80 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.072547+0000 mgr.a (mgr.14150) 81 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.072883+0000 mgr.a (mgr.14150) 82 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.076755+0000 mgr.a (mgr.14150) 83 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.285093+0000 mgr.a (mgr.14150) 84 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.329627+0000 mgr.a (mgr.14150) 85 : cephadm [INF] Reconfiguring mon.a (unknown last config time)... 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cephadm 2024-09-16T14:33:58.332220+0000 mgr.a (mgr.14150) 86 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:04.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:33:58.586808+0000 mon.a (mon.0) 261 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:33:58.587181+0000 mon.a (mon.0) 262 : cluster [INF] mon.a calling monitor election 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:33:58.589671+0000 mon.c (mon.1) 2 : cluster [INF] mon.c calling monitor election 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:33:58.606137+0000 mon.a (mon.0) 263 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:33:58.606252+0000 mon.a (mon.0) 264 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:33:58.763126+0000 mgr.a (mgr.14150) 87 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:33:59.570236+0000 mon.a (mon.0) 265 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:00.570249+0000 mon.a (mon.0) 266 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:00.583555+0000 mon.b (mon.2) 1 : cluster [INF] mon.b calling monitor election 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:00.763610+0000 mgr.a (mgr.14150) 88 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:01.570432+0000 mon.a (mon.0) 267 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:02.570336+0000 mon.a (mon.0) 268 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:02.764056+0000 mgr.a (mgr.14150) 89 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.570711+0000 mon.a (mon.0) 269 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.630110+0000 mon.a (mon.0) 270 : cluster [INF] mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.635255+0000 mon.a (mon.0) 271 : cluster [DBG] monmap e3: 3 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],b=[v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0],c=[v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.636248+0000 mon.a (mon.0) 272 : cluster [DBG] fsmap 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.636302+0000 mon.a (mon.0) 273 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.636565+0000 mon.a (mon.0) 274 : cluster [DBG] mgrmap e13: a(active, since 104s) 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: cluster 2024-09-16T14:34:03.636807+0000 mon.a (mon.0) 275 : cluster [INF] overall HEALTH_OK 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.643988+0000 mon.a (mon.0) 276 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.649846+0000 mon.a (mon.0) 277 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.655395+0000 mon.a (mon.0) 278 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.661112+0000 mon.a (mon.0) 279 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.665434+0000 mon.a (mon.0) 280 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:04.107 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.667493+0000 mon.a (mon.0) 281 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:04.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:03 smithi139 bash[23309]: audit 2024-09-16T14:34:03.669423+0000 mon.a (mon.0) 282 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:04.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:04 smithi139 bash[23309]: cephadm 2024-09-16T14:34:03.664808+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T14:34:04.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:04 smithi139 bash[23309]: cephadm 2024-09-16T14:34:03.691551+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring daemon mon.b on smithi139 2024-09-16T14:34:04.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:04 smithi139 bash[23309]: audit 2024-09-16T14:34:04.570548+0000 mon.a (mon.0) 283 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:04 smithi019 bash[22501]: cephadm 2024-09-16T14:34:03.664808+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T14:34:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:04 smithi019 bash[22501]: cephadm 2024-09-16T14:34:03.691551+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring daemon mon.b on smithi139 2024-09-16T14:34:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:04 smithi019 bash[22501]: audit 2024-09-16T14:34:04.570548+0000 mon.a (mon.0) 283 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:05.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:04 smithi162 bash[23377]: cephadm 2024-09-16T14:34:03.664808+0000 mgr.a (mgr.14150) 90 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T14:34:05.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:04 smithi162 bash[23377]: cephadm 2024-09-16T14:34:03.691551+0000 mgr.a (mgr.14150) 91 : cephadm [INF] Reconfiguring daemon mon.b on smithi139 2024-09-16T14:34:05.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:04 smithi162 bash[23377]: audit 2024-09-16T14:34:04.570548+0000 mon.a (mon.0) 283 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:34:05.479 INFO:teuthology.orchestra.run.smithi162.stdout: 2024-09-16T14:34:05.479 INFO:teuthology.orchestra.run.smithi162.stdout:{"epoch":3,"fsid":"130fbd00-7438-11ef-bceb-c7b262605968","modified":"2024-09-16T14:33:58.580594Z","created":"2024-09-16T14:31:15.501973Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:3300","nonce":0},{"type":"v1","addr":"172.21.15.19:6789","nonce":0}]},"addr":"172.21.15.19:6789/0","public_addr":"172.21.15.19:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:3300","nonce":0},{"type":"v1","addr":"172.21.15.162:6789","nonce":0}]},"addr":"172.21.15.162:6789/0","public_addr":"172.21.15.162:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:3300","nonce":0},{"type":"v1","addr":"172.21.15.139:6789","nonce":0}]},"addr":"172.21.15.139:6789/0","public_addr":"172.21.15.139:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-16T14:34:05.480 INFO:teuthology.orchestra.run.smithi162.stderr:dumped monmap epoch 3 2024-09-16T14:34:05.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:05 smithi139 bash[23309]: cluster 2024-09-16T14:34:04.764466+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:05.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:05 smithi139 bash[23309]: audit 2024-09-16T14:34:05.179925+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:05.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:05 smithi139 bash[23309]: audit 2024-09-16T14:34:05.478272+0000 mon.a (mon.0) 285 : audit [DBG] from='client.? 172.21.15.162:0/222970627' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:34:05.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:05 smithi162 bash[23377]: cluster 2024-09-16T14:34:04.764466+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:05.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:05 smithi162 bash[23377]: audit 2024-09-16T14:34:05.179925+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:05.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:05 smithi162 bash[23377]: audit 2024-09-16T14:34:05.478272+0000 mon.a (mon.0) 285 : audit [DBG] from='client.? 172.21.15.162:0/222970627' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:34:05.979 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:34:05 smithi019 bash[22752]: debug 2024-09-16T14:34:05.566+0000 7f6f4fac0640 -1 mgr.server handle_report got status from non-daemon mon.b 2024-09-16T14:34:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:05 smithi019 bash[22501]: cluster 2024-09-16T14:34:04.764466+0000 mgr.a (mgr.14150) 92 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:05 smithi019 bash[22501]: audit 2024-09-16T14:34:05.179925+0000 mon.a (mon.0) 284 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:05 smithi019 bash[22501]: audit 2024-09-16T14:34:05.478272+0000 mon.a (mon.0) 285 : audit [DBG] from='client.? 172.21.15.162:0/222970627' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-16T14:34:06.099 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-16T14:34:06.100 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:05.833359+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:05.840181+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:05.849887+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.048971+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.056724+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.066304+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.545565+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.557255+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.559718+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:07.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.561636+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:07.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:06 smithi139 bash[23309]: audit 2024-09-16T14:34:06.563473+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:07.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:05.833359+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:05.840181+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:05.849887+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.048971+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.056724+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.066304+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.545565+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.557255+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.559718+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.561636+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:07.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:06 smithi162 bash[23377]: audit 2024-09-16T14:34:06.563473+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:05.833359+0000 mon.a (mon.0) 286 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:05.840181+0000 mon.a (mon.0) 287 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:05.849887+0000 mon.a (mon.0) 288 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.048971+0000 mon.a (mon.0) 289 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.056724+0000 mon.a (mon.0) 290 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.066304+0000 mon.a (mon.0) 291 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.545565+0000 mon.a (mon.0) 292 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.557255+0000 mon.a (mon.0) 293 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.559718+0000 mon.a (mon.0) 294 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.561636+0000 mon.a (mon.0) 295 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:06 smithi019 bash[22501]: audit 2024-09-16T14:34:06.563473+0000 mon.a (mon.0) 296 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:08.076 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:07 smithi162 bash[23377]: cephadm 2024-09-16T14:34:06.559119+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T14:34:08.076 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:07 smithi162 bash[23377]: cephadm 2024-09-16T14:34:06.565450+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Reconfiguring daemon mon.c on smithi162 2024-09-16T14:34:08.076 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:07 smithi162 bash[23377]: cluster 2024-09-16T14:34:06.764859+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:08.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:07 smithi139 bash[23309]: cephadm 2024-09-16T14:34:06.559119+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T14:34:08.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:07 smithi139 bash[23309]: cephadm 2024-09-16T14:34:06.565450+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Reconfiguring daemon mon.c on smithi162 2024-09-16T14:34:08.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:07 smithi139 bash[23309]: cluster 2024-09-16T14:34:06.764859+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:08.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:07 smithi019 bash[22501]: cephadm 2024-09-16T14:34:06.559119+0000 mgr.a (mgr.14150) 93 : cephadm [INF] Reconfiguring mon.c (monmap changed)... 2024-09-16T14:34:08.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:07 smithi019 bash[22501]: cephadm 2024-09-16T14:34:06.565450+0000 mgr.a (mgr.14150) 94 : cephadm [INF] Reconfiguring daemon mon.c on smithi162 2024-09-16T14:34:08.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:07 smithi019 bash[22501]: cluster 2024-09-16T14:34:06.764859+0000 mgr.a (mgr.14150) 95 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.473258+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.480459+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.483119+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.487718+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.489623+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.491989+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.492479+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.494291+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:09.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.753962+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.754264+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cephadm 2024-09-16T14:34:08.754360+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: cluster 2024-09-16T14:34:08.765124+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.948500+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.952685+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.956883+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.962806+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.968303+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.972583+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:08.977054+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:09.026168+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:09.027169+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:09.731 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:09 smithi019 bash[22501]: audit 2024-09-16T14:34:09.028215+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.473258+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.480459+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.483119+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.487718+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.489623+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.491989+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.492479+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:09.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.494291+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.753962+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.754264+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cephadm 2024-09-16T14:34:08.754360+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: cluster 2024-09-16T14:34:08.765124+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.948500+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.952685+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.956883+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.962806+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.968303+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.972583+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:08.977054+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:09.026168+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:09.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:09.027169+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:09.857 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:09 smithi139 bash[23309]: audit 2024-09-16T14:34:09.028215+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:09.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.473258+0000 mon.a (mon.0) 297 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.480459+0000 mon.a (mon.0) 298 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.483119+0000 mon.a (mon.0) 299 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:09.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.487718+0000 mon.a (mon.0) 300 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.489623+0000 mon.a (mon.0) 301 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.491989+0000 mgr.a (mgr.14150) 96 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.492479+0000 mgr.a (mgr.14150) 97 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.494291+0000 mgr.a (mgr.14150) 98 : cephadm [INF] Updating smithi162:/etc/ceph/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.753962+0000 mgr.a (mgr.14150) 99 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.754264+0000 mgr.a (mgr.14150) 100 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cephadm 2024-09-16T14:34:08.754360+0000 mgr.a (mgr.14150) 101 : cephadm [INF] Updating smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: cluster 2024-09-16T14:34:08.765124+0000 mgr.a (mgr.14150) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.948500+0000 mon.a (mon.0) 302 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.952685+0000 mon.a (mon.0) 303 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.956883+0000 mon.a (mon.0) 304 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.962806+0000 mon.a (mon.0) 305 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.968303+0000 mon.a (mon.0) 306 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.935 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.972583+0000 mon.a (mon.0) 307 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:08.977054+0000 mon.a (mon.0) 308 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:09.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:09.026168+0000 mon.a (mon.0) 309 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:34:09.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:09.027169+0000 mon.a (mon.0) 310 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:34:09.936 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:09 smithi162 bash[23377]: audit 2024-09-16T14:34:09.028215+0000 mon.a (mon.0) 311 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:10.767 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:34:10.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:10 smithi139 bash[23309]: cephadm 2024-09-16T14:34:09.025820+0000 mgr.a (mgr.14150) 103 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T14:34:10.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:10 smithi139 bash[23309]: cephadm 2024-09-16T14:34:09.029325+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:10.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:10 smithi162 bash[23377]: cephadm 2024-09-16T14:34:09.025820+0000 mgr.a (mgr.14150) 103 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T14:34:10.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:10 smithi162 bash[23377]: cephadm 2024-09-16T14:34:09.029325+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:10.941 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:10 smithi019 bash[22501]: cephadm 2024-09-16T14:34:09.025820+0000 mgr.a (mgr.14150) 103 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T14:34:10.941 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:10 smithi019 bash[22501]: cephadm 2024-09-16T14:34:09.029325+0000 mgr.a (mgr.14150) 104 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:34:11.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:11 smithi139 bash[23309]: cluster 2024-09-16T14:34:10.765407+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-16T14:34:11.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:11 smithi139 bash[23309]: audit 2024-09-16T14:34:11.052631+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:11.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:11 smithi139 bash[23309]: audit 2024-09-16T14:34:11.056835+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:11.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:11 smithi162 bash[23377]: cluster 2024-09-16T14:34:10.765407+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-16T14:34:11.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:11 smithi162 bash[23377]: audit 2024-09-16T14:34:11.052631+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:11.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:11 smithi162 bash[23377]: audit 2024-09-16T14:34:11.056835+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:11.938 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:11 smithi019 bash[22501]: cluster 2024-09-16T14:34:10.765407+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-16T14:34:11.938 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:11 smithi019 bash[22501]: audit 2024-09-16T14:34:11.052631+0000 mon.a (mon.0) 312 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:11.938 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:11 smithi019 bash[22501]: audit 2024-09-16T14:34:11.056835+0000 mon.a (mon.0) 313 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:14.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:13 smithi139 bash[23309]: cluster 2024-09-16T14:34:12.765765+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:14.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:13 smithi162 bash[23377]: cluster 2024-09-16T14:34:12.765765+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:14.211 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:13 smithi019 bash[22501]: cluster 2024-09-16T14:34:12.765765+0000 mgr.a (mgr.14150) 106 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:14.529 INFO:teuthology.orchestra.run.smithi019.stdout:# minimal ceph.conf for 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:34:14.529 INFO:teuthology.orchestra.run.smithi019.stdout:[global] 2024-09-16T14:34:14.529 INFO:teuthology.orchestra.run.smithi019.stdout: fsid = 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:34:14.530 INFO:teuthology.orchestra.run.smithi019.stdout: mon_host = [v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0] [v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0] [v2:172.21.15.162:3300/0,v1:172.21.15.162:6789/0] 2024-09-16T14:34:15.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:14 smithi139 bash[23309]: audit 2024-09-16T14:34:14.528732+0000 mon.a (mon.0) 314 : audit [DBG] from='client.? 172.21.15.19:0/1646168820' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:15.140 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:14 smithi019 bash[22501]: audit 2024-09-16T14:34:14.528732+0000 mon.a (mon.0) 314 : audit [DBG] from='client.? 172.21.15.19:0/1646168820' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:15.141 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-16T14:34:15.141 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:34:15.141 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T14:34:15.155 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:34:15.155 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:34:15.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:14 smithi162 bash[23377]: audit 2024-09-16T14:34:14.528732+0000 mon.a (mon.0) 314 : audit [DBG] from='client.? 172.21.15.19:0/1646168820' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:15.210 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:34:15.210 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T14:34:15.225 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:34:15.225 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:34:15.280 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:34:15.280 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/ceph/ceph.conf 2024-09-16T14:34:15.295 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:34:15.295 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:34:15.349 INFO:tasks.cephadm:Adding mgr.a on smithi019 2024-09-16T14:34:15.350 INFO:tasks.cephadm:Adding mgr.b on smithi139 2024-09-16T14:34:15.350 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi019=a;smithi139=b' 2024-09-16T14:34:15.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:15 smithi019 bash[22501]: cluster 2024-09-16T14:34:14.766143+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:16.033 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:15 smithi162 bash[23377]: cluster 2024-09-16T14:34:14.766143+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:16.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:15 smithi139 bash[23309]: cluster 2024-09-16T14:34:14.766143+0000 mgr.a (mgr.14150) 107 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:18.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:17 smithi139 bash[23309]: cluster 2024-09-16T14:34:16.766563+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:17 smithi162 bash[23377]: cluster 2024-09-16T14:34:16.766563+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:18.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:17 smithi019 bash[22501]: cluster 2024-09-16T14:34:16.766563+0000 mgr.a (mgr.14150) 108 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:19.049 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:34:19.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:18 smithi139 bash[23309]: audit 2024-09-16T14:34:17.993363+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:18 smithi139 bash[23309]: audit 2024-09-16T14:34:17.999874+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:18 smithi139 bash[23309]: audit 2024-09-16T14:34:18.010320+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:18 smithi139 bash[23309]: cluster 2024-09-16T14:34:18.766965+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:19.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:18 smithi162 bash[23377]: audit 2024-09-16T14:34:17.993363+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:18 smithi162 bash[23377]: audit 2024-09-16T14:34:17.999874+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:18 smithi162 bash[23377]: audit 2024-09-16T14:34:18.010320+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:18 smithi162 bash[23377]: cluster 2024-09-16T14:34:18.766965+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:19.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:18 smithi019 bash[22501]: audit 2024-09-16T14:34:17.993363+0000 mon.a (mon.0) 315 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:18 smithi019 bash[22501]: audit 2024-09-16T14:34:17.999874+0000 mon.a (mon.0) 316 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:18 smithi019 bash[22501]: audit 2024-09-16T14:34:18.010320+0000 mon.a (mon.0) 317 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:19.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:18 smithi019 bash[22501]: cluster 2024-09-16T14:34:18.766965+0000 mgr.a (mgr.14150) 109 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:21.903 INFO:teuthology.orchestra.run.smithi162.stdout:Scheduled mgr update... 2024-09-16T14:34:22.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:21 smithi139 bash[23309]: cluster 2024-09-16T14:34:20.767384+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:22.115 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:21 smithi162 bash[23377]: cluster 2024-09-16T14:34:20.767384+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:22.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:21 smithi019 bash[22501]: cluster 2024-09-16T14:34:20.767384+0000 mgr.a (mgr.14150) 110 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:22.445 DEBUG:teuthology.orchestra.run.smithi139:mgr.b> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.b.service 2024-09-16T14:34:22.449 INFO:tasks.cephadm:Deploying OSDs... 2024-09-16T14:34:22.449 DEBUG:teuthology.orchestra.run.smithi019:> set -ex 2024-09-16T14:34:22.449 DEBUG:teuthology.orchestra.run.smithi019:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T14:34:22.456 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-16T14:34:22.457 DEBUG:teuthology.orchestra.run.smithi019:> stat /dev/vg_nvme/lv_1 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout:Device: 5h/5d Inode: 884 Links: 1 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout:Access: 2024-09-16 14:23:51.220342535 +0000 2024-09-16T14:34:22.504 INFO:teuthology.orchestra.run.smithi019.stdout:Modify: 2024-09-16 14:23:51.216342571 +0000 2024-09-16T14:34:22.505 INFO:teuthology.orchestra.run.smithi019.stdout:Change: 2024-09-16 14:23:51.216342571 +0000 2024-09-16T14:34:22.505 INFO:teuthology.orchestra.run.smithi019.stdout: Birth: - 2024-09-16T14:34:22.505 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T14:34:22.557 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records in 2024-09-16T14:34:22.557 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records out 2024-09-16T14:34:22.557 INFO:teuthology.orchestra.run.smithi019.stderr:512 bytes copied, 0.000374712 s, 1.4 MB/s 2024-09-16T14:34:22.559 DEBUG:teuthology.orchestra.run.smithi019:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T14:34:22.608 DEBUG:teuthology.orchestra.run.smithi019:> stat /dev/vg_nvme/lv_2 2024-09-16T14:34:22.654 INFO:teuthology.orchestra.run.smithi019.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout:Device: 5h/5d Inode: 902 Links: 1 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout:Access: 2024-09-16 14:23:51.980335747 +0000 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout:Modify: 2024-09-16 14:23:51.708338176 +0000 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout:Change: 2024-09-16 14:23:51.708338176 +0000 2024-09-16T14:34:22.655 INFO:teuthology.orchestra.run.smithi019.stdout: Birth: - 2024-09-16T14:34:22.655 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T14:34:22.709 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records in 2024-09-16T14:34:22.709 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records out 2024-09-16T14:34:22.709 INFO:teuthology.orchestra.run.smithi019.stderr:512 bytes copied, 0.000406826 s, 1.3 MB/s 2024-09-16T14:34:22.710 DEBUG:teuthology.orchestra.run.smithi019:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T14:34:22.759 DEBUG:teuthology.orchestra.run.smithi019:> stat /dev/vg_nvme/lv_3 2024-09-16T14:34:22.806 INFO:teuthology.orchestra.run.smithi019.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T14:34:22.806 INFO:teuthology.orchestra.run.smithi019.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout:Device: 5h/5d Inode: 918 Links: 1 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout:Access: 2024-09-16 14:23:52.472331352 +0000 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout:Modify: 2024-09-16 14:23:52.212333674 +0000 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout:Change: 2024-09-16 14:23:52.212333674 +0000 2024-09-16T14:34:22.807 INFO:teuthology.orchestra.run.smithi019.stdout: Birth: - 2024-09-16T14:34:22.807 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T14:34:22.861 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records in 2024-09-16T14:34:22.861 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records out 2024-09-16T14:34:22.862 INFO:teuthology.orchestra.run.smithi019.stderr:512 bytes copied, 0.000468194 s, 1.1 MB/s 2024-09-16T14:34:22.863 DEBUG:teuthology.orchestra.run.smithi019:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T14:34:22.914 DEBUG:teuthology.orchestra.run.smithi019:> stat /dev/vg_nvme/lv_4 2024-09-16T14:34:22.963 INFO:teuthology.orchestra.run.smithi019.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T14:34:22.963 INFO:teuthology.orchestra.run.smithi019.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:22.963 INFO:teuthology.orchestra.run.smithi019.stdout:Device: 5h/5d Inode: 934 Links: 1 2024-09-16T14:34:22.963 INFO:teuthology.orchestra.run.smithi019.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:22.963 INFO:teuthology.orchestra.run.smithi019.stdout:Access: 2024-09-16 14:23:52.948327101 +0000 2024-09-16T14:34:22.964 INFO:teuthology.orchestra.run.smithi019.stdout:Modify: 2024-09-16 14:23:52.692329387 +0000 2024-09-16T14:34:22.964 INFO:teuthology.orchestra.run.smithi019.stdout:Change: 2024-09-16 14:23:52.692329387 +0000 2024-09-16T14:34:22.964 INFO:teuthology.orchestra.run.smithi019.stdout: Birth: - 2024-09-16T14:34:22.964 DEBUG:teuthology.orchestra.run.smithi019:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T14:34:23.017 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records in 2024-09-16T14:34:23.017 INFO:teuthology.orchestra.run.smithi019.stderr:1+0 records out 2024-09-16T14:34:23.018 INFO:teuthology.orchestra.run.smithi019.stderr:512 bytes copied, 0.00038226 s, 1.3 MB/s 2024-09-16T14:34:23.019 DEBUG:teuthology.orchestra.run.smithi019:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T14:34:23.072 DEBUG:teuthology.orchestra.run.smithi139:> set -ex 2024-09-16T14:34:23.072 DEBUG:teuthology.orchestra.run.smithi139:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T14:34:23.079 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-16T14:34:23.079 DEBUG:teuthology.orchestra.run.smithi139:> stat /dev/vg_nvme/lv_1 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout:Device: 5h/5d Inode: 881 Links: 1 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout:Access: 2024-09-16 14:23:46.915366368 +0000 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout:Modify: 2024-09-16 14:23:46.675368512 +0000 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout:Change: 2024-09-16 14:23:46.675368512 +0000 2024-09-16T14:34:23.129 INFO:teuthology.orchestra.run.smithi139.stdout: Birth: - 2024-09-16T14:34:23.130 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T14:34:23.181 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.890594+0000 mgr.a (mgr.14150) 111 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi019=a;smithi139=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:23.255 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: cephadm 2024-09-16T14:34:21.893623+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Saving service mgr spec with placement smithi019=a;smithi139=b;count:2 2024-09-16T14:34:23.255 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.901664+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.903277+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.908283+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.910150+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.921286+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.925225+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.931643+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.933352+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: audit 2024-09-16T14:34:21.935247+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: cephadm 2024-09-16T14:34:21.937283+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Deploying daemon mgr.b on smithi139 2024-09-16T14:34:23.256 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:22 smithi139 bash[23309]: cluster 2024-09-16T14:34:22.767838+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:23.257 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.890594+0000 mgr.a (mgr.14150) 111 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi019=a;smithi139=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:23.257 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: cephadm 2024-09-16T14:34:21.893623+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Saving service mgr spec with placement smithi019=a;smithi139=b;count:2 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.901664+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.903277+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.908283+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.910150+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.921286+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.925225+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.931643+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.933352+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: audit 2024-09-16T14:34:21.935247+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: cephadm 2024-09-16T14:34:21.937283+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Deploying daemon mgr.b on smithi139 2024-09-16T14:34:23.258 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:22 smithi019 bash[22501]: cluster 2024-09-16T14:34:22.767838+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.890594+0000 mgr.a (mgr.14150) 111 : audit [DBG] from='client.24106 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi019=a;smithi139=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: cephadm 2024-09-16T14:34:21.893623+0000 mgr.a (mgr.14150) 112 : cephadm [INF] Saving service mgr spec with placement smithi019=a;smithi139=b;count:2 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.901664+0000 mon.a (mon.0) 318 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.903277+0000 mon.a (mon.0) 319 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.908283+0000 mon.a (mon.0) 320 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.910150+0000 mon.a (mon.0) 321 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.921286+0000 mon.a (mon.0) 322 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.925225+0000 mon.a (mon.0) 323 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.931643+0000 mon.a (mon.0) 324 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.933352+0000 mon.a (mon.0) 325 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: audit 2024-09-16T14:34:21.935247+0000 mon.a (mon.0) 326 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: cephadm 2024-09-16T14:34:21.937283+0000 mgr.a (mgr.14150) 113 : cephadm [INF] Deploying daemon mgr.b on smithi139 2024-09-16T14:34:23.259 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:22 smithi162 bash[23377]: cluster 2024-09-16T14:34:22.767838+0000 mgr.a (mgr.14150) 114 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:23.260 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records in 2024-09-16T14:34:23.261 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records out 2024-09-16T14:34:23.261 INFO:teuthology.orchestra.run.smithi139.stderr:512 bytes copied, 0.000326933 s, 1.6 MB/s 2024-09-16T14:34:23.261 DEBUG:teuthology.orchestra.run.smithi139:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T14:34:23.312 DEBUG:teuthology.orchestra.run.smithi139:> stat /dev/vg_nvme/lv_2 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout:Device: 5h/5d Inode: 903 Links: 1 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout:Access: 2024-09-16 14:23:47.367362331 +0000 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout:Modify: 2024-09-16 14:23:47.143364332 +0000 2024-09-16T14:34:23.365 INFO:teuthology.orchestra.run.smithi139.stdout:Change: 2024-09-16 14:23:47.143364332 +0000 2024-09-16T14:34:23.366 INFO:teuthology.orchestra.run.smithi139.stdout: Birth: - 2024-09-16T14:34:23.366 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T14:34:23.418 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records in 2024-09-16T14:34:23.419 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records out 2024-09-16T14:34:23.419 INFO:teuthology.orchestra.run.smithi139.stderr:512 bytes copied, 0.000341654 s, 1.5 MB/s 2024-09-16T14:34:23.420 DEBUG:teuthology.orchestra.run.smithi139:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T14:34:23.473 DEBUG:teuthology.orchestra.run.smithi139:> stat /dev/vg_nvme/lv_3 2024-09-16T14:34:23.520 INFO:teuthology.orchestra.run.smithi139.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T14:34:23.520 INFO:teuthology.orchestra.run.smithi139.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.520 INFO:teuthology.orchestra.run.smithi139.stdout:Device: 5h/5d Inode: 917 Links: 1 2024-09-16T14:34:23.521 INFO:teuthology.orchestra.run.smithi139.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.521 INFO:teuthology.orchestra.run.smithi139.stdout:Access: 2024-09-16 14:23:47.847358043 +0000 2024-09-16T14:34:23.521 INFO:teuthology.orchestra.run.smithi139.stdout:Modify: 2024-09-16 14:23:47.603360223 +0000 2024-09-16T14:34:23.521 INFO:teuthology.orchestra.run.smithi139.stdout:Change: 2024-09-16 14:23:47.603360223 +0000 2024-09-16T14:34:23.521 INFO:teuthology.orchestra.run.smithi139.stdout: Birth: - 2024-09-16T14:34:23.521 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T14:34:23.579 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records in 2024-09-16T14:34:23.579 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records out 2024-09-16T14:34:23.579 INFO:teuthology.orchestra.run.smithi139.stderr:512 bytes copied, 0.000327694 s, 1.6 MB/s 2024-09-16T14:34:23.579 DEBUG:teuthology.orchestra.run.smithi139:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T14:34:23.625 DEBUG:teuthology.orchestra.run.smithi139:> stat /dev/vg_nvme/lv_4 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout:Device: 5h/5d Inode: 937 Links: 1 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout:Access: 2024-09-16 14:23:48.327353756 +0000 2024-09-16T14:34:23.672 INFO:teuthology.orchestra.run.smithi139.stdout:Modify: 2024-09-16 14:23:48.079355971 +0000 2024-09-16T14:34:23.673 INFO:teuthology.orchestra.run.smithi139.stdout:Change: 2024-09-16 14:23:48.079355971 +0000 2024-09-16T14:34:23.673 INFO:teuthology.orchestra.run.smithi139.stdout: Birth: - 2024-09-16T14:34:23.673 DEBUG:teuthology.orchestra.run.smithi139:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T14:34:23.724 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records in 2024-09-16T14:34:23.725 INFO:teuthology.orchestra.run.smithi139.stderr:1+0 records out 2024-09-16T14:34:23.725 INFO:teuthology.orchestra.run.smithi139.stderr:512 bytes copied, 0.000254509 s, 2.0 MB/s 2024-09-16T14:34:23.726 DEBUG:teuthology.orchestra.run.smithi139:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T14:34:23.773 DEBUG:teuthology.orchestra.run.smithi162:> set -ex 2024-09-16T14:34:23.774 DEBUG:teuthology.orchestra.run.smithi162:> dd if=/scratch_devs of=/dev/stdout 2024-09-16T14:34:23.779 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-16T14:34:23.780 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_1 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 878 Links: 1 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-09-16 14:23:47.953472939 +0000 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-09-16 14:23:47.705475154 +0000 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-09-16 14:23:47.705475154 +0000 2024-09-16T14:34:23.830 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: - 2024-09-16T14:34:23.831 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-16T14:34:23.884 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-09-16T14:34:23.884 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-09-16T14:34:23.884 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000377117 s, 1.4 MB/s 2024-09-16T14:34:23.885 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-16T14:34:23.934 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_2 2024-09-16T14:34:23.981 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-16T14:34:23.981 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:23.981 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 892 Links: 1 2024-09-16T14:34:23.981 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:23.982 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-09-16 14:23:48.437468616 +0000 2024-09-16T14:34:23.982 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-09-16 14:23:48.169471009 +0000 2024-09-16T14:34:23.982 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-09-16 14:23:48.169471009 +0000 2024-09-16T14:34:23.982 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: - 2024-09-16T14:34:23.982 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-16T14:34:24.035 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-09-16T14:34:24.035 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-09-16T14:34:24.035 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000278885 s, 1.8 MB/s 2024-09-16T14:34:24.036 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-16T14:34:24.086 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_3 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 915 Links: 1 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-09-16 14:23:48.665466578 +0000 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-09-16 14:23:48.661466615 +0000 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-09-16 14:23:48.661466615 +0000 2024-09-16T14:34:24.133 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: - 2024-09-16T14:34:24.134 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-16T14:34:24.187 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-09-16T14:34:24.188 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-09-16T14:34:24.188 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000363946 s, 1.4 MB/s 2024-09-16T14:34:24.189 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-16T14:34:24.242 DEBUG:teuthology.orchestra.run.smithi162:> stat /dev/vg_nvme/lv_4 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout:Device: 5h/5d Inode: 924 Links: 1 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout:Access: 2024-09-16 14:23:49.429459755 +0000 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout:Modify: 2024-09-16 14:23:49.185461934 +0000 2024-09-16T14:34:24.289 INFO:teuthology.orchestra.run.smithi162.stdout:Change: 2024-09-16 14:23:49.185461934 +0000 2024-09-16T14:34:24.290 INFO:teuthology.orchestra.run.smithi162.stdout: Birth: - 2024-09-16T14:34:24.290 DEBUG:teuthology.orchestra.run.smithi162:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-16T14:34:24.343 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records in 2024-09-16T14:34:24.344 INFO:teuthology.orchestra.run.smithi162.stderr:1+0 records out 2024-09-16T14:34:24.344 INFO:teuthology.orchestra.run.smithi162.stderr:512 bytes copied, 0.000381523 s, 1.3 MB/s 2024-09-16T14:34:24.345 DEBUG:teuthology.orchestra.run.smithi162:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-16T14:34:24.394 INFO:tasks.cephadm:Deploying osd.0 on smithi019 with /dev/vg_nvme/lv_4... 2024-09-16T14:34:24.394 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-16T14:34:25.581 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.582 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.582 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.582 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.854 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.854 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: Started Ceph mgr.b for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: cluster 2024-09-16T14:34:24.768273+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.601708+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.609141+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.618642+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.721336+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.729795+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.737500+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:25.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:25 smithi139 bash[23309]: audit 2024-09-16T14:34:25.744759+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: cluster 2024-09-16T14:34:24.768273+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.601708+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.609141+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.618642+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.721336+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.729795+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.737500+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:25 smithi162 bash[23377]: audit 2024-09-16T14:34:25.744759+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: cluster 2024-09-16T14:34:24.768273+0000 mgr.a (mgr.14150) 115 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.601708+0000 mon.a (mon.0) 327 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.609141+0000 mon.a (mon.0) 328 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.618642+0000 mon.a (mon.0) 329 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.721336+0000 mon.a (mon.0) 330 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.729795+0000 mon.a (mon.0) 331 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.737500+0000 mon.a (mon.0) 332 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:25 smithi019 bash[22501]: audit 2024-09-16T14:34:25.744759+0000 mon.a (mon.0) 333 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.849932+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.853253+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.854421+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.864067+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.938626+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.940033+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.941047+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.989474+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.993629+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:26 smithi139 bash[23309]: audit 2024-09-16T14:34:25.998940+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.849932+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.853253+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.854421+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.864067+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.938626+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.940033+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.941047+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.989474+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.993629+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:26 smithi162 bash[23377]: audit 2024-09-16T14:34:25.998940+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.849932+0000 mon.a (mon.0) 334 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.853253+0000 mon.a (mon.0) 335 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.854421+0000 mon.a (mon.0) 336 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.864067+0000 mon.a (mon.0) 337 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.938626+0000 mon.a (mon.0) 338 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.940033+0000 mon.a (mon.0) 339 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.941047+0000 mon.a (mon.0) 340 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.989474+0000 mon.a (mon.0) 341 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.993629+0000 mon.a (mon.0) 342 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:26 smithi019 bash[22501]: audit 2024-09-16T14:34:25.998940+0000 mon.a (mon.0) 343 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:27.604 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[24391]: debug 2024-09-16T14:34:27.213+0000 7fb50c987640 1 -- 172.21.15.139:0/812470520 <== mon.2 v2:172.21.15.139:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) v1 ==== 194+0+0 (secure 0 0 0) 0x556dd2ea0d00 con 0x556dd2e92800 2024-09-16T14:34:27.604 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[24391]: debug 2024-09-16T14:34:27.345+0000 7fb50f1f0040 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-09-16T14:34:28.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[23309]: cephadm 2024-09-16T14:34:25.864649+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:28.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[23309]: cephadm 2024-09-16T14:34:25.938083+0000 mgr.a (mgr.14150) 117 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T14:34:28.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[23309]: cephadm 2024-09-16T14:34:25.942345+0000 mgr.a (mgr.14150) 118 : cephadm [INF] Reconfiguring daemon mgr.a on smithi019 2024-09-16T14:34:28.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:27 smithi139 bash[23309]: cluster 2024-09-16T14:34:26.768689+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:28.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:27 smithi162 bash[23377]: cephadm 2024-09-16T14:34:25.864649+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:28.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:27 smithi162 bash[23377]: cephadm 2024-09-16T14:34:25.938083+0000 mgr.a (mgr.14150) 117 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T14:34:28.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:27 smithi162 bash[23377]: cephadm 2024-09-16T14:34:25.942345+0000 mgr.a (mgr.14150) 118 : cephadm [INF] Reconfiguring daemon mgr.a on smithi019 2024-09-16T14:34:28.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:27 smithi162 bash[23377]: cluster 2024-09-16T14:34:26.768689+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:27 smithi019 bash[22501]: cephadm 2024-09-16T14:34:25.864649+0000 mgr.a (mgr.14150) 116 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:27 smithi019 bash[22501]: cephadm 2024-09-16T14:34:25.938083+0000 mgr.a (mgr.14150) 117 : cephadm [INF] Reconfiguring mgr.a (unknown last config time)... 2024-09-16T14:34:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:27 smithi019 bash[22501]: cephadm 2024-09-16T14:34:25.942345+0000 mgr.a (mgr.14150) 118 : cephadm [INF] Reconfiguring daemon mgr.a on smithi019 2024-09-16T14:34:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:27 smithi019 bash[22501]: cluster 2024-09-16T14:34:26.768689+0000 mgr.a (mgr.14150) 119 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:28.779 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[24391]: debug 2024-09-16T14:34:28.557+0000 7fb50f1f0040 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-09-16T14:34:28.780 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[24391]: debug 2024-09-16T14:34:28.621+0000 7fb50f1f0040 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-09-16T14:34:28.780 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[24391]: debug 2024-09-16T14:34:28.773+0000 7fb50f1f0040 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-09-16T14:34:29.064 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:34:29.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:27.982942+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:27.989311+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:27.991970+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:27.995100+0000 mon.a (mon.0) 347 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:27.996265+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:28.004126+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: cephadm 2024-09-16T14:34:28.004704+0000 mgr.a (mgr.14150) 120 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: audit 2024-09-16T14:34:28.652414+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:28 smithi139 bash[23309]: cluster 2024-09-16T14:34:28.769125+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-16T14:34:29.269 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:27.982942+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:27.989311+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:27.991970+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:27.995100+0000 mon.a (mon.0) 347 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:27.996265+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:28.004126+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: cephadm 2024-09-16T14:34:28.004704+0000 mgr.a (mgr.14150) 120 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: audit 2024-09-16T14:34:28.652414+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.270 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:28 smithi019 bash[22501]: cluster 2024-09-16T14:34:28.769125+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-16T14:34:29.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:27.982942+0000 mon.a (mon.0) 344 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:27.989311+0000 mon.a (mon.0) 345 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:27.991970+0000 mon.a (mon.0) 346 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:29.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:27.995100+0000 mon.a (mon.0) 347 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:29.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:27.996265+0000 mon.a (mon.0) 348 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:29.435 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:28.004126+0000 mon.a (mon.0) 349 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.435 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: cephadm 2024-09-16T14:34:28.004704+0000 mgr.a (mgr.14150) 120 : cephadm [INF] Metadata not up to date on all hosts. Skipping non agent specs 2024-09-16T14:34:29.435 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: audit 2024-09-16T14:34:28.652414+0000 mon.a (mon.0) 350 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:29.435 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:28 smithi162 bash[23377]: cluster 2024-09-16T14:34:28.769125+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-16T14:34:29.520 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.437+0000 7fb50f1f0040 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-09-16T14:34:29.774 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.517+0000 7fb50f1f0040 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-09-16T14:34:29.774 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.589+0000 7fb50f1f0040 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-09-16T14:34:30.104 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.769+0000 7fb50f1f0040 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-09-16T14:34:30.105 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.845+0000 7fb50f1f0040 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-09-16T14:34:30.105 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:29 smithi139 bash[24391]: debug 2024-09-16T14:34:29.913+0000 7fb50f1f0040 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-09-16T14:34:30.429 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.165+0000 7fb50f1f0040 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-09-16T14:34:30.430 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.233+0000 7fb50f1f0040 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-09-16T14:34:30.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:30 smithi019 bash[22501]: audit 2024-09-16T14:34:29.591109+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:30.758 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[23309]: audit 2024-09-16T14:34:29.591109+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:30.758 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.425+0000 7fb50f1f0040 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-09-16T14:34:30.758 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.501+0000 7fb50f1f0040 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-09-16T14:34:30.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:30 smithi162 bash[23377]: audit 2024-09-16T14:34:29.591109+0000 mon.a (mon.0) 351 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.104 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.753+0000 7fb50f1f0040 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-09-16T14:34:31.104 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:30 smithi139 bash[24391]: debug 2024-09-16T14:34:30.937+0000 7fb50f1f0040 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:34:31.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[24391]: debug 2024-09-16T14:34:31.101+0000 7fb50f1f0040 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-09-16T14:34:31.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[24391]: debug 2024-09-16T14:34:31.181+0000 7fb50f1f0040 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-09-16T14:34:31.854 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[24391]: debug 2024-09-16T14:34:31.365+0000 7fb50f1f0040 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-09-16T14:34:31.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: cluster 2024-09-16T14:34:30.769575+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-16T14:34:31.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.420777+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.424994+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.427884+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:31.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.430948+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.431110+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:31.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.432303+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:31.856 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:31 smithi139 bash[23309]: audit 2024-09-16T14:34:31.439555+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: cluster 2024-09-16T14:34:30.769575+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-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.420777+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.424994+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.427884+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.430948+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.431110+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.432303+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:31.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:31 smithi162 bash[23377]: audit 2024-09-16T14:34:31.439555+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: cluster 2024-09-16T14:34:30.769575+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-16T14:34:31.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.420777+0000 mon.a (mon.0) 352 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.424994+0000 mon.a (mon.0) 353 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.427884+0000 mon.a (mon.0) 354 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.430948+0000 mon.a (mon.0) 355 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.431110+0000 mon.a (mon.0) 356 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.432303+0000 mon.a (mon.0) 357 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:34:31.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:31 smithi019 bash[22501]: audit 2024-09-16T14:34:31.439555+0000 mon.a (mon.0) 358 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:32.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.161+0000 7fb50f1f0040 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-09-16T14:34:32.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.237+0000 7fb50f1f0040 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-09-16T14:34:32.854 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.453+0000 7fb50f1f0040 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-09-16T14:34:32.854 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.525+0000 7fb50f1f0040 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:32.018972+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:32.023285+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:32.029524+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: cluster 2024-09-16T14:34:32.769979+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: cluster 2024-09-16T14:34:33.006517+0000 mon.a (mon.0) 362 : cluster [DBG] Standby manager daemon b started 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:33.008335+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T14:34:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:33.009083+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T14:34:33.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:33.010346+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T14:34:33.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:33 smithi019 bash[22501]: audit 2024-09-16T14:34:33.010965+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T14:34:33.326 INFO:teuthology.orchestra.run.smithi019.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-16T14:34:33.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.905+0000 7fb50f1f0040 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-09-16T14:34:33.354 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:34:32 smithi139 bash[24391]: debug 2024-09-16T14:34:32.981+0000 7fb50f1f0040 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:32.018972+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:32.023285+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:32.029524+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: cluster 2024-09-16T14:34:32.769979+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: cluster 2024-09-16T14:34:33.006517+0000 mon.a (mon.0) 362 : cluster [DBG] Standby manager daemon b started 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:33.008335+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:33.009083+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:33.010346+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T14:34:33.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:33 smithi139 bash[23309]: audit 2024-09-16T14:34:33.010965+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:32.018972+0000 mon.a (mon.0) 359 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:32.023285+0000 mon.a (mon.0) 360 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:32.029524+0000 mon.a (mon.0) 361 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: cluster 2024-09-16T14:34:32.769979+0000 mgr.a (mgr.14150) 123 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: cluster 2024-09-16T14:34:33.006517+0000 mon.a (mon.0) 362 : cluster [DBG] Standby manager daemon b started 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:33.008335+0000 mon.b (mon.2) 2 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:33.009083+0000 mon.b (mon.2) 3 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:33.010346+0000 mon.b (mon.2) 4 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-09-16T14:34:33.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:33 smithi162 bash[23377]: audit 2024-09-16T14:34:33.010965+0000 mon.b (mon.2) 5 : audit [DBG] from='mgr.? 172.21.15.139:0/3756655278' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-16T14:34:33.520 INFO:teuthology.orchestra.run.smithi019.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-16T14:34:33.534 INFO:teuthology.orchestra.run.smithi019.stderr: stderr: 10+0 records in 2024-09-16T14:34:33.534 INFO:teuthology.orchestra.run.smithi019.stderr:10+0 records out 2024-09-16T14:34:33.534 INFO:teuthology.orchestra.run.smithi019.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0122537 s, 856 MB/s 2024-09-16T14:34:33.534 INFO:teuthology.orchestra.run.smithi019.stderr:--> Zapping successful for: 2024-09-16T14:34:34.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:34 smithi139 bash[23309]: cluster 2024-09-16T14:34:33.039319+0000 mon.a (mon.0) 363 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T14:34:34.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:34 smithi139 bash[23309]: audit 2024-09-16T14:34:33.039442+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T14:34:34.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:34 smithi162 bash[23377]: cluster 2024-09-16T14:34:33.039319+0000 mon.a (mon.0) 363 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T14:34:34.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:34 smithi162 bash[23377]: audit 2024-09-16T14:34:33.039442+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T14:34:34.434 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:34 smithi019 bash[22501]: cluster 2024-09-16T14:34:33.039319+0000 mon.a (mon.0) 363 : cluster [DBG] mgrmap e14: a(active, since 2m), standbys: b 2024-09-16T14:34:34.434 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:34 smithi019 bash[22501]: audit 2024-09-16T14:34:33.039442+0000 mon.a (mon.0) 364 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-09-16T14:34:34.435 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi019:vg_nvme/lv_4 2024-09-16T14:34:35.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:35 smithi139 bash[23309]: cluster 2024-09-16T14:34:34.770422+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:35.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:35 smithi162 bash[23377]: cluster 2024-09-16T14:34:34.770422+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:35.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:35 smithi019 bash[22501]: cluster 2024-09-16T14:34:34.770422+0000 mgr.a (mgr.14150) 124 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:38.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:37 smithi139 bash[23309]: cluster 2024-09-16T14:34:36.770918+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:38.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:37 smithi162 bash[23377]: cluster 2024-09-16T14:34:36.770918+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:38.211 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:34:38.212 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:37 smithi019 bash[22501]: cluster 2024-09-16T14:34:36.770918+0000 mgr.a (mgr.14150) 125 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:39.456 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:39 smithi019 bash[22501]: audit 2024-09-16T14:34:38.192979+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.456 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:39 smithi019 bash[22501]: audit 2024-09-16T14:34:38.200825+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.456 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:39 smithi019 bash[22501]: audit 2024-09-16T14:34:38.210224+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.456 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:39 smithi019 bash[22501]: cluster 2024-09-16T14:34:38.771428+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:39.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:39 smithi139 bash[23309]: audit 2024-09-16T14:34:38.192979+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:39 smithi139 bash[23309]: audit 2024-09-16T14:34:38.200825+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:39 smithi139 bash[23309]: audit 2024-09-16T14:34:38.210224+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:39 smithi139 bash[23309]: cluster 2024-09-16T14:34:38.771428+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:39.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:39 smithi162 bash[23377]: audit 2024-09-16T14:34:38.192979+0000 mon.a (mon.0) 365 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:39 smithi162 bash[23377]: audit 2024-09-16T14:34:38.200825+0000 mon.a (mon.0) 366 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:39 smithi162 bash[23377]: audit 2024-09-16T14:34:38.210224+0000 mon.a (mon.0) 367 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:39.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:39 smithi162 bash[23377]: cluster 2024-09-16T14:34:38.771428+0000 mgr.a (mgr.14150) 126 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:42.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:41 smithi139 bash[23309]: cluster 2024-09-16T14:34:40.771776+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:42.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:41 smithi139 bash[23309]: audit 2024-09-16T14:34:41.059791+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:34:42.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:41 smithi139 bash[23309]: audit 2024-09-16T14:34:41.063458+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:34:42.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:41 smithi139 bash[23309]: audit 2024-09-16T14:34:41.064708+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:42.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:41 smithi162 bash[23377]: cluster 2024-09-16T14:34:40.771776+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:42.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:41 smithi162 bash[23377]: audit 2024-09-16T14:34:41.059791+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:34:42.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:41 smithi162 bash[23377]: audit 2024-09-16T14:34:41.063458+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:34:42.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:41 smithi162 bash[23377]: audit 2024-09-16T14:34:41.064708+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:42.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:41 smithi019 bash[22501]: cluster 2024-09-16T14:34:40.771776+0000 mgr.a (mgr.14150) 127 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:42.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:41 smithi019 bash[22501]: audit 2024-09-16T14:34:41.059791+0000 mon.a (mon.0) 368 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:34:42.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:41 smithi019 bash[22501]: audit 2024-09-16T14:34:41.063458+0000 mon.a (mon.0) 369 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:34:42.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:41 smithi019 bash[22501]: audit 2024-09-16T14:34:41.064708+0000 mon.a (mon.0) 370 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:34:43.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:42 smithi139 bash[23309]: audit 2024-09-16T14:34:41.056979+0000 mgr.a (mgr.14150) 128 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:43.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:42 smithi162 bash[23377]: audit 2024-09-16T14:34:41.056979+0000 mgr.a (mgr.14150) 128 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:43.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:42 smithi019 bash[22501]: audit 2024-09-16T14:34:41.056979+0000 mgr.a (mgr.14150) 128 : audit [DBG] from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:34:44.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:43 smithi139 bash[23309]: cluster 2024-09-16T14:34:42.772252+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:44.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:43 smithi162 bash[23377]: cluster 2024-09-16T14:34:42.772252+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:44.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:43 smithi019 bash[22501]: cluster 2024-09-16T14:34:42.772252+0000 mgr.a (mgr.14150) 129 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:46.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:45 smithi139 bash[23309]: cluster 2024-09-16T14:34:44.772764+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:46.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:45 smithi139 bash[23309]: audit 2024-09-16T14:34:45.827089+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:46.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:45 smithi139 bash[23309]: audit 2024-09-16T14:34:45.834684+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:46.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:45 smithi162 bash[23377]: cluster 2024-09-16T14:34:44.772764+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:46.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:45 smithi162 bash[23377]: audit 2024-09-16T14:34:45.827089+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:46.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:45 smithi162 bash[23377]: audit 2024-09-16T14:34:45.834684+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:46.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:45 smithi019 bash[22501]: cluster 2024-09-16T14:34:44.772764+0000 mgr.a (mgr.14150) 130 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:46.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:45 smithi019 bash[22501]: audit 2024-09-16T14:34:45.827089+0000 mon.a (mon.0) 371 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:46.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:45 smithi019 bash[22501]: audit 2024-09-16T14:34:45.834684+0000 mon.a (mon.0) 372 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:47.104 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:46 smithi019 bash[22501]: audit 2024-09-16T14:34:45.844058+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:47.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:46 smithi139 bash[23309]: audit 2024-09-16T14:34:45.844058+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:47.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:46 smithi162 bash[23377]: audit 2024-09-16T14:34:45.844058+0000 mon.a (mon.0) 373 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:47.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:47 smithi019 bash[22501]: cluster 2024-09-16T14:34:46.773280+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:48.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:47 smithi162 bash[23377]: cluster 2024-09-16T14:34:46.773280+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:48.356 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:47 smithi139 bash[23309]: cluster 2024-09-16T14:34:46.773280+0000 mgr.a (mgr.14150) 131 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:49.065 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:48 smithi139 bash[23309]: cluster 2024-09-16T14:34:48.773743+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:49.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:48 smithi162 bash[23377]: cluster 2024-09-16T14:34:48.773743+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:48 smithi019 bash[22501]: cluster 2024-09-16T14:34:48.773743+0000 mgr.a (mgr.14150) 132 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:50.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:49 smithi162 bash[23377]: audit 2024-09-16T14:34:49.148433+0000 mon.a (mon.0) 374 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]: dispatch 2024-09-16T14:34:50.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:49 smithi162 bash[23377]: audit 2024-09-16T14:34:49.155500+0000 mon.a (mon.0) 375 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]': finished 2024-09-16T14:34:50.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:49 smithi162 bash[23377]: cluster 2024-09-16T14:34:49.155641+0000 mon.a (mon.0) 376 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T14:34:50.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:49 smithi162 bash[23377]: audit 2024-09-16T14:34:49.155811+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:34:50.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:49 smithi162 bash[23377]: audit 2024-09-16T14:34:49.767236+0000 mon.a (mon.0) 378 : audit [DBG] from='client.? 172.21.15.19:0/268894893' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:34:50.186 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:49 smithi139 bash[23309]: audit 2024-09-16T14:34:49.148433+0000 mon.a (mon.0) 374 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]: dispatch 2024-09-16T14:34:50.186 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:49 smithi139 bash[23309]: audit 2024-09-16T14:34:49.155500+0000 mon.a (mon.0) 375 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]': finished 2024-09-16T14:34:50.187 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:49 smithi139 bash[23309]: cluster 2024-09-16T14:34:49.155641+0000 mon.a (mon.0) 376 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T14:34:50.187 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:49 smithi139 bash[23309]: audit 2024-09-16T14:34:49.155811+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:34:50.187 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:49 smithi139 bash[23309]: audit 2024-09-16T14:34:49.767236+0000 mon.a (mon.0) 378 : audit [DBG] from='client.? 172.21.15.19:0/268894893' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:34:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:49 smithi019 bash[22501]: audit 2024-09-16T14:34:49.148433+0000 mon.a (mon.0) 374 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]: dispatch 2024-09-16T14:34:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:49 smithi019 bash[22501]: audit 2024-09-16T14:34:49.155500+0000 mon.a (mon.0) 375 : audit [INF] from='client.? 172.21.15.19:0/4206321939' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8aae7e27-a44a-49c5-98f4-ccf095d19069"}]': finished 2024-09-16T14:34:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:49 smithi019 bash[22501]: cluster 2024-09-16T14:34:49.155641+0000 mon.a (mon.0) 376 : cluster [DBG] osdmap e5: 1 total, 0 up, 1 in 2024-09-16T14:34:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:49 smithi019 bash[22501]: audit 2024-09-16T14:34:49.155811+0000 mon.a (mon.0) 377 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:34:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:49 smithi019 bash[22501]: audit 2024-09-16T14:34:49.767236+0000 mon.a (mon.0) 378 : audit [DBG] from='client.? 172.21.15.19:0/268894893' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:34:51.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:50 smithi139 bash[23309]: cluster 2024-09-16T14:34:50.774138+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-16T14:34:51.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:50 smithi162 bash[23377]: cluster 2024-09-16T14:34:50.774138+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-16T14:34:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:50 smithi019 bash[22501]: cluster 2024-09-16T14:34:50.774138+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-16T14:34:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:53 smithi019 bash[22501]: audit 2024-09-16T14:34:52.221664+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:53 smithi019 bash[22501]: audit 2024-09-16T14:34:52.226728+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:53 smithi019 bash[22501]: audit 2024-09-16T14:34:52.233425+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:53 smithi019 bash[22501]: cluster 2024-09-16T14:34:52.774567+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-16T14:34:53.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:53 smithi139 bash[23309]: audit 2024-09-16T14:34:52.221664+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:53 smithi139 bash[23309]: audit 2024-09-16T14:34:52.226728+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:53 smithi139 bash[23309]: audit 2024-09-16T14:34:52.233425+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:53 smithi139 bash[23309]: cluster 2024-09-16T14:34:52.774567+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-16T14:34:53.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:53 smithi162 bash[23377]: audit 2024-09-16T14:34:52.221664+0000 mon.a (mon.0) 379 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:53 smithi162 bash[23377]: audit 2024-09-16T14:34:52.226728+0000 mon.a (mon.0) 380 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:53 smithi162 bash[23377]: audit 2024-09-16T14:34:52.233425+0000 mon.a (mon.0) 381 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:53.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:53 smithi162 bash[23377]: cluster 2024-09-16T14:34:52.774567+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-16T14:34:56.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:55 smithi139 bash[23309]: cluster 2024-09-16T14:34:54.774960+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-16T14:34:56.139 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:55 smithi162 bash[23377]: cluster 2024-09-16T14:34:54.774960+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-16T14:34:56.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:55 smithi019 bash[22501]: cluster 2024-09-16T14:34:54.774960+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-16T14:34:58.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:57 smithi139 bash[23309]: cluster 2024-09-16T14:34:56.775388+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-16T14:34:58.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:57 smithi162 bash[23377]: cluster 2024-09-16T14:34:56.775388+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-16T14:34:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:57 smithi019 bash[22501]: cluster 2024-09-16T14:34:56.775388+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-16T14:34:59.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:59 smithi162 bash[23377]: audit 2024-09-16T14:34:58.391442+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:59 smithi162 bash[23377]: audit 2024-09-16T14:34:58.397726+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:59 smithi162 bash[23377]: cephadm 2024-09-16T14:34:58.400162+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:34:59.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:59 smithi162 bash[23377]: audit 2024-09-16T14:34:58.404718+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:34:59 smithi162 bash[23377]: cluster 2024-09-16T14:34:58.775801+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:59 smithi019 bash[22501]: audit 2024-09-16T14:34:58.391442+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:59 smithi019 bash[22501]: audit 2024-09-16T14:34:58.397726+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:59 smithi019 bash[22501]: cephadm 2024-09-16T14:34:58.400162+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:34:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:59 smithi019 bash[22501]: audit 2024-09-16T14:34:58.404718+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:34:59 smithi019 bash[22501]: cluster 2024-09-16T14:34:58.775801+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:34:59.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:59 smithi139 bash[23309]: audit 2024-09-16T14:34:58.391442+0000 mon.a (mon.0) 382 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:59 smithi139 bash[23309]: audit 2024-09-16T14:34:58.397726+0000 mon.a (mon.0) 383 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:59 smithi139 bash[23309]: cephadm 2024-09-16T14:34:58.400162+0000 mgr.a (mgr.14150) 137 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:34:59.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:59 smithi139 bash[23309]: audit 2024-09-16T14:34:58.404718+0000 mon.a (mon.0) 384 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:34:59.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:34:59 smithi139 bash[23309]: cluster 2024-09-16T14:34:58.775801+0000 mgr.a (mgr.14150) 138 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:01.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:01 smithi162 bash[23377]: cluster 2024-09-16T14:35:00.776245+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:01.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:01 smithi162 bash[23377]: audit 2024-09-16T14:35:01.113847+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T14:35:01.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:01 smithi162 bash[23377]: audit 2024-09-16T14:35:01.115368+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:01 smithi139 bash[23309]: cluster 2024-09-16T14:35:00.776245+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:01 smithi139 bash[23309]: audit 2024-09-16T14:35:01.113847+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T14:35:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:01 smithi139 bash[23309]: audit 2024-09-16T14:35:01.115368+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:01 smithi019 bash[22501]: cluster 2024-09-16T14:35:00.776245+0000 mgr.a (mgr.14150) 139 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:01 smithi019 bash[22501]: audit 2024-09-16T14:35:01.113847+0000 mon.a (mon.0) 385 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T14:35:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:01 smithi019 bash[22501]: audit 2024-09-16T14:35:01.115368+0000 mon.a (mon.0) 386 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:02.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:02 smithi019 bash[22501]: cephadm 2024-09-16T14:35:01.116710+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Deploying daemon osd.0 on smithi019 2024-09-16T14:35:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:02 smithi139 bash[23309]: cephadm 2024-09-16T14:35:01.116710+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Deploying daemon osd.0 on smithi019 2024-09-16T14:35:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:02 smithi162 bash[23377]: cephadm 2024-09-16T14:35:01.116710+0000 mgr.a (mgr.14150) 140 : cephadm [INF] Deploying daemon osd.0 on smithi019 2024-09-16T14:35:04.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:03 smithi139 bash[23309]: cluster 2024-09-16T14:35:02.776661+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-16T14:35:04.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:03 smithi162 bash[23377]: cluster 2024-09-16T14:35:02.776661+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-16T14:35:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:03 smithi019 bash[22501]: cluster 2024-09-16T14:35:02.776661+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-16T14:35:05.263 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:35:05.263 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:35:05 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:35:05.634 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:35:05.635 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:35:05 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:35:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: cluster 2024-09-16T14:35:04.777034+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-16T14:35:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.540831+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.545315+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.545557+0000 mon.a (mon.0) 389 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:05.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.546739+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:05.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.549965+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:05.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:05 smithi019 bash[22501]: audit 2024-09-16T14:35:05.555906+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: cluster 2024-09-16T14:35:04.777034+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-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.540831+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.545315+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.545557+0000 mon.a (mon.0) 389 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.546739+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.549965+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:05 smithi139 bash[23309]: audit 2024-09-16T14:35:05.555906+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: cluster 2024-09-16T14:35:04.777034+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-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.540831+0000 mon.a (mon.0) 387 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.545315+0000 mon.a (mon.0) 388 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.545557+0000 mon.a (mon.0) 389 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.546739+0000 mon.a (mon.0) 390 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.549965+0000 mon.a (mon.0) 391 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:06.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:05 smithi162 bash[23377]: audit 2024-09-16T14:35:05.555906+0000 mon.a (mon.0) 392 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:07 smithi019 bash[22501]: audit 2024-09-16T14:35:06.050500+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:07 smithi019 bash[22501]: audit 2024-09-16T14:35:06.058091+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:07 smithi019 bash[22501]: audit 2024-09-16T14:35:06.067434+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:07 smithi019 bash[22501]: cluster 2024-09-16T14:35:06.777323+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-16T14:35:07.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:07 smithi139 bash[23309]: audit 2024-09-16T14:35:06.050500+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:07 smithi139 bash[23309]: audit 2024-09-16T14:35:06.058091+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:07 smithi139 bash[23309]: audit 2024-09-16T14:35:06.067434+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:07 smithi139 bash[23309]: cluster 2024-09-16T14:35:06.777323+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-16T14:35:07.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:07 smithi162 bash[23377]: audit 2024-09-16T14:35:06.050500+0000 mon.a (mon.0) 393 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:07 smithi162 bash[23377]: audit 2024-09-16T14:35:06.058091+0000 mon.a (mon.0) 394 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:07 smithi162 bash[23377]: audit 2024-09-16T14:35:06.067434+0000 mon.a (mon.0) 395 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:07.434 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:07 smithi162 bash[23377]: cluster 2024-09-16T14:35:06.777323+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-16T14:35:10.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:09 smithi139 bash[23309]: cluster 2024-09-16T14:35:08.777645+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-16T14:35:10.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:09 smithi162 bash[23377]: cluster 2024-09-16T14:35:08.777645+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-16T14:35:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:09 smithi019 bash[22501]: cluster 2024-09-16T14:35:08.777645+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-16T14:35:11.957 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:11 smithi019 bash[22501]: cluster 2024-09-16T14:35:10.777976+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-16T14:35:12.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:11 smithi139 bash[23309]: cluster 2024-09-16T14:35:10.777976+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-16T14:35:12.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:11 smithi162 bash[23377]: cluster 2024-09-16T14:35:10.777976+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-16T14:35:12.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:12 smithi019 bash[22501]: audit 2024-09-16T14:35:11.960711+0000 mon.a (mon.0) 396 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T14:35:12.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:12 smithi019 bash[22501]: audit 2024-09-16T14:35:12.443727+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:12.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:12 smithi019 bash[22501]: audit 2024-09-16T14:35:12.448486+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:12.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:12 smithi019 bash[22501]: audit 2024-09-16T14:35:12.455908+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:12 smithi139 bash[23309]: audit 2024-09-16T14:35:11.960711+0000 mon.a (mon.0) 396 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T14:35:13.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:12 smithi139 bash[23309]: audit 2024-09-16T14:35:12.443727+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:12 smithi139 bash[23309]: audit 2024-09-16T14:35:12.448486+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:12 smithi139 bash[23309]: audit 2024-09-16T14:35:12.455908+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:12 smithi162 bash[23377]: audit 2024-09-16T14:35:11.960711+0000 mon.a (mon.0) 396 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-16T14:35:13.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:12 smithi162 bash[23377]: audit 2024-09-16T14:35:12.443727+0000 mon.a (mon.0) 397 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:12 smithi162 bash[23377]: audit 2024-09-16T14:35:12.448486+0000 mon.a (mon.0) 398 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:13.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:12 smithi162 bash[23377]: audit 2024-09-16T14:35:12.455908+0000 mon.a (mon.0) 399 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:14.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:13 smithi162 bash[23377]: cluster 2024-09-16T14:35:12.778396+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-16T14:35:14.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:13 smithi162 bash[23377]: audit 2024-09-16T14:35:12.854906+0000 mon.a (mon.0) 400 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T14:35:14.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:13 smithi162 bash[23377]: cluster 2024-09-16T14:35:12.855024+0000 mon.a (mon.0) 401 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T14:35:14.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:13 smithi162 bash[23377]: audit 2024-09-16T14:35:12.855359+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:14.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:13 smithi162 bash[23377]: audit 2024-09-16T14:35:12.856225+0000 mon.a (mon.0) 403 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:35:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:13 smithi019 bash[22501]: cluster 2024-09-16T14:35:12.778396+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-16T14:35:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:13 smithi019 bash[22501]: audit 2024-09-16T14:35:12.854906+0000 mon.a (mon.0) 400 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T14:35:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:13 smithi019 bash[22501]: cluster 2024-09-16T14:35:12.855024+0000 mon.a (mon.0) 401 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T14:35:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:13 smithi019 bash[22501]: audit 2024-09-16T14:35:12.855359+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:13 smithi019 bash[22501]: audit 2024-09-16T14:35:12.856225+0000 mon.a (mon.0) 403 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:35:14.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:13 smithi139 bash[23309]: cluster 2024-09-16T14:35:12.778396+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-16T14:35:14.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:13 smithi139 bash[23309]: audit 2024-09-16T14:35:12.854906+0000 mon.a (mon.0) 400 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-16T14:35:14.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:13 smithi139 bash[23309]: cluster 2024-09-16T14:35:12.855024+0000 mon.a (mon.0) 401 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-16T14:35:14.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:13 smithi139 bash[23309]: audit 2024-09-16T14:35:12.855359+0000 mon.a (mon.0) 402 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:14.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:13 smithi139 bash[23309]: audit 2024-09-16T14:35:12.856225+0000 mon.a (mon.0) 403 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:35:15.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:14 smithi162 bash[23377]: audit 2024-09-16T14:35:13.857005+0000 mon.a (mon.0) 404 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:35:15.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:14 smithi162 bash[23377]: cluster 2024-09-16T14:35:13.857088+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T14:35:15.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:14 smithi162 bash[23377]: audit 2024-09-16T14:35:13.857622+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:14 smithi162 bash[23377]: audit 2024-09-16T14:35:13.866077+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:14 smithi162 bash[23377]: cluster 2024-09-16T14:35:14.778892+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:14 smithi019 bash[22501]: audit 2024-09-16T14:35:13.857005+0000 mon.a (mon.0) 404 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:35:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:14 smithi019 bash[22501]: cluster 2024-09-16T14:35:13.857088+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T14:35:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:14 smithi019 bash[22501]: audit 2024-09-16T14:35:13.857622+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:14 smithi019 bash[22501]: audit 2024-09-16T14:35:13.866077+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:14 smithi019 bash[22501]: cluster 2024-09-16T14:35:14.778892+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:15.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:14 smithi139 bash[23309]: audit 2024-09-16T14:35:13.857005+0000 mon.a (mon.0) 404 : audit [INF] from='osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:35:15.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:14 smithi139 bash[23309]: cluster 2024-09-16T14:35:13.857088+0000 mon.a (mon.0) 405 : cluster [DBG] osdmap e7: 1 total, 0 up, 1 in 2024-09-16T14:35:15.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:14 smithi139 bash[23309]: audit 2024-09-16T14:35:13.857622+0000 mon.a (mon.0) 406 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:14 smithi139 bash[23309]: audit 2024-09-16T14:35:13.866077+0000 mon.a (mon.0) 407 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:15.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:14 smithi139 bash[23309]: cluster 2024-09-16T14:35:14.778892+0000 mgr.a (mgr.14150) 147 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-16T14:35:16.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: cluster 2024-09-16T14:35:12.970688+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:35:16.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: cluster 2024-09-16T14:35:12.970817+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:35:16.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: audit 2024-09-16T14:35:14.867846+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: cluster 2024-09-16T14:35:14.876759+0000 mon.a (mon.0) 409 : cluster [INF] osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402] boot 2024-09-16T14:35:16.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: cluster 2024-09-16T14:35:14.876818+0000 mon.a (mon.0) 410 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T14:35:16.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:15 smithi162 bash[23377]: audit 2024-09-16T14:35:14.877762+0000 mon.a (mon.0) 411 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: cluster 2024-09-16T14:35:12.970688+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: cluster 2024-09-16T14:35:12.970817+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: audit 2024-09-16T14:35:14.867846+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: cluster 2024-09-16T14:35:14.876759+0000 mon.a (mon.0) 409 : cluster [INF] osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402] boot 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: cluster 2024-09-16T14:35:14.876818+0000 mon.a (mon.0) 410 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T14:35:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:15 smithi019 bash[22501]: audit 2024-09-16T14:35:14.877762+0000 mon.a (mon.0) 411 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: cluster 2024-09-16T14:35:12.970688+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:35:16.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: cluster 2024-09-16T14:35:12.970817+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:35:16.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: audit 2024-09-16T14:35:14.867846+0000 mon.a (mon.0) 408 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: cluster 2024-09-16T14:35:14.876759+0000 mon.a (mon.0) 409 : cluster [INF] osd.0 [v2:172.21.15.19:6802/1527629402,v1:172.21.15.19:6803/1527629402] boot 2024-09-16T14:35:16.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: cluster 2024-09-16T14:35:14.876818+0000 mon.a (mon.0) 410 : cluster [DBG] osdmap e8: 1 total, 1 up, 1 in 2024-09-16T14:35:16.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:15 smithi139 bash[23309]: audit 2024-09-16T14:35:14.877762+0000 mon.a (mon.0) 411 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-16T14:35:16.880 INFO:teuthology.orchestra.run.smithi019.stdout:Created osd(s) 0 on host 'smithi019' 2024-09-16T14:35:17.044 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: cluster 2024-09-16T14:35:15.877631+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T14:35:17.044 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: cluster 2024-09-16T14:35:16.779343+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:17.044 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: audit 2024-09-16T14:35:16.861107+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:17.045 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: audit 2024-09-16T14:35:16.869433+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.045 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: audit 2024-09-16T14:35:16.869971+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:35:17.045 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:16 smithi162 bash[23377]: audit 2024-09-16T14:35:16.877712+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: cluster 2024-09-16T14:35:15.877631+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T14:35:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: cluster 2024-09-16T14:35:16.779343+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: audit 2024-09-16T14:35:16.861107+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: audit 2024-09-16T14:35:16.869433+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: audit 2024-09-16T14:35:16.869971+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:35:17.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:16 smithi019 bash[22501]: audit 2024-09-16T14:35:16.877712+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: cluster 2024-09-16T14:35:15.877631+0000 mon.a (mon.0) 412 : cluster [DBG] osdmap e9: 1 total, 1 up, 1 in 2024-09-16T14:35:17.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: cluster 2024-09-16T14:35:16.779343+0000 mgr.a (mgr.14150) 148 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:17.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: audit 2024-09-16T14:35:16.861107+0000 mon.a (mon.0) 413 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:17.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: audit 2024-09-16T14:35:16.869433+0000 mon.a (mon.0) 414 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: audit 2024-09-16T14:35:16.869971+0000 mon.a (mon.0) 415 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:35:17.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:16 smithi139 bash[23309]: audit 2024-09-16T14:35:16.877712+0000 mon.a (mon.0) 416 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:17.415 DEBUG:teuthology.orchestra.run.smithi019:osd.0> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.0.service 2024-09-16T14:35:17.417 INFO:tasks.cephadm:Deploying osd.1 on smithi019 with /dev/vg_nvme/lv_3... 2024-09-16T14:35:17.418 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-16T14:35:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:17 smithi162 bash[23377]: cephadm 2024-09-16T14:35:16.871352+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 16245M 2024-09-16T14:35:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:17 smithi162 bash[23377]: audit 2024-09-16T14:35:16.888563+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:17 smithi162 bash[23377]: audit 2024-09-16T14:35:16.894561+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:17 smithi162 bash[23377]: audit 2024-09-16T14:35:16.896041+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:18.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:17 smithi162 bash[23377]: audit 2024-09-16T14:35:16.903501+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:18.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:17 smithi019 bash[22501]: cephadm 2024-09-16T14:35:16.871352+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 16245M 2024-09-16T14:35:18.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:17 smithi019 bash[22501]: audit 2024-09-16T14:35:16.888563+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:18.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:17 smithi019 bash[22501]: audit 2024-09-16T14:35:16.894561+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:18.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:17 smithi019 bash[22501]: audit 2024-09-16T14:35:16.896041+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:18.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:17 smithi019 bash[22501]: audit 2024-09-16T14:35:16.903501+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:18.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:17 smithi139 bash[23309]: cephadm 2024-09-16T14:35:16.871352+0000 mgr.a (mgr.14150) 149 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 16245M 2024-09-16T14:35:18.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:17 smithi139 bash[23309]: audit 2024-09-16T14:35:16.888563+0000 mon.a (mon.0) 417 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:18.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:17 smithi139 bash[23309]: audit 2024-09-16T14:35:16.894561+0000 mon.a (mon.0) 418 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:18.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:17 smithi139 bash[23309]: audit 2024-09-16T14:35:16.896041+0000 mon.a (mon.0) 419 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:18.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:17 smithi139 bash[23309]: audit 2024-09-16T14:35:16.903501+0000 mon.a (mon.0) 420 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.599398+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.607073+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.612185+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.618097+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.618461+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.620653+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: cluster 2024-09-16T14:35:18.624529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:19.855 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:19 smithi139 bash[23309]: audit 2024-09-16T14:35:18.631045+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.599398+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.607073+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.612185+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:19.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.618097+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.618461+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:19.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.620653+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:19.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: cluster 2024-09-16T14:35:18.624529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:19.934 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:19 smithi162 bash[23377]: audit 2024-09-16T14:35:18.631045+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.599398+0000 mon.a (mon.0) 421 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.607073+0000 mon.a (mon.0) 422 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.612185+0000 mon.a (mon.0) 423 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:19.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.618097+0000 mon.a (mon.0) 424 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:19.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.618461+0000 mon.a (mon.0) 425 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:19.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.620653+0000 mon.a (mon.0) 426 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:19.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: cluster 2024-09-16T14:35:18.624529+0000 mgr.a (mgr.14150) 150 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:19.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:19 smithi019 bash[22501]: audit 2024-09-16T14:35:18.631045+0000 mon.a (mon.0) 427 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:20.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:20 smithi139 bash[23309]: cluster 2024-09-16T14:35:19.613630+0000 mon.a (mon.0) 428 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:35:20.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:20 smithi162 bash[23377]: cluster 2024-09-16T14:35:19.613630+0000 mon.a (mon.0) 428 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:35:20.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:20 smithi019 bash[22501]: cluster 2024-09-16T14:35:19.613630+0000 mon.a (mon.0) 428 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:35:21.351 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:35:21.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:21 smithi162 bash[23377]: cluster 2024-09-16T14:35:20.625052+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:21.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:21 smithi019 bash[22501]: cluster 2024-09-16T14:35:20.625052+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:22.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:21 smithi139 bash[23309]: cluster 2024-09-16T14:35:20.625052+0000 mgr.a (mgr.14150) 151 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:22.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.718670+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:22.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.725456+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.727696+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.733011+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.733261+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.734487+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: cluster 2024-09-16T14:35:21.736152+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:22.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:22 smithi019 bash[22501]: audit 2024-09-16T14:35:21.741846+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.718670+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.725456+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.727696+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.733011+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.733261+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.734487+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: cluster 2024-09-16T14:35:21.736152+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:23.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:22 smithi139 bash[23309]: audit 2024-09-16T14:35:21.741846+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.718670+0000 mon.a (mon.0) 429 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.725456+0000 mon.a (mon.0) 430 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.727696+0000 mon.a (mon.0) 431 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:35:23.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.733011+0000 mon.a (mon.0) 432 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.733261+0000 mon.a (mon.0) 433 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:23.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.734487+0000 mon.a (mon.0) 434 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:35:23.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: cluster 2024-09-16T14:35:21.736152+0000 mgr.a (mgr.14150) 152 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:23.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:22 smithi162 bash[23377]: audit 2024-09-16T14:35:21.741846+0000 mon.a (mon.0) 435 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:23.978 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:23 smithi019 bash[22501]: cluster 2024-09-16T14:35:22.728963+0000 mon.a (mon.0) 436 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:35:23.978 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:23 smithi019 bash[22501]: cluster 2024-09-16T14:35:22.729034+0000 mon.a (mon.0) 437 : cluster [INF] Cluster is now healthy 2024-09-16T14:35:24.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:23 smithi139 bash[23309]: cluster 2024-09-16T14:35:22.728963+0000 mon.a (mon.0) 436 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:35:24.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:23 smithi139 bash[23309]: cluster 2024-09-16T14:35:22.729034+0000 mon.a (mon.0) 437 : cluster [INF] Cluster is now healthy 2024-09-16T14:35:24.135 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:23 smithi162 bash[23377]: cluster 2024-09-16T14:35:22.728963+0000 mon.a (mon.0) 436 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:35:24.135 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:23 smithi162 bash[23377]: cluster 2024-09-16T14:35:22.729034+0000 mon.a (mon.0) 437 : cluster [INF] Cluster is now healthy 2024-09-16T14:35:24.340 INFO:teuthology.orchestra.run.smithi019.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-16T14:35:24.511 INFO:teuthology.orchestra.run.smithi019.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-16T14:35:24.528 INFO:teuthology.orchestra.run.smithi019.stderr: stderr: 10+0 records in 2024-09-16T14:35:24.529 INFO:teuthology.orchestra.run.smithi019.stderr:10+0 records out 2024-09-16T14:35:24.529 INFO:teuthology.orchestra.run.smithi019.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0149554 s, 701 MB/s 2024-09-16T14:35:24.529 INFO:teuthology.orchestra.run.smithi019.stderr:--> Zapping successful for: 2024-09-16T14:35:24.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:24 smithi019 bash[22501]: cluster 2024-09-16T14:35:23.736609+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:25.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:24 smithi139 bash[23309]: cluster 2024-09-16T14:35:23.736609+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:25.175 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi019:vg_nvme/lv_3 2024-09-16T14:35:25.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:24 smithi162 bash[23377]: cluster 2024-09-16T14:35:23.736609+0000 mgr.a (mgr.14150) 153 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:26 smithi139 bash[23309]: cluster 2024-09-16T14:35:25.737100+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:26 smithi139 bash[23309]: audit 2024-09-16T14:35:26.267511+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:26 smithi139 bash[23309]: audit 2024-09-16T14:35:26.289895+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:26 smithi139 bash[23309]: audit 2024-09-16T14:35:26.299274+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:26 smithi162 bash[23377]: cluster 2024-09-16T14:35:25.737100+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:26 smithi162 bash[23377]: audit 2024-09-16T14:35:26.267511+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:26 smithi162 bash[23377]: audit 2024-09-16T14:35:26.289895+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:26 smithi162 bash[23377]: audit 2024-09-16T14:35:26.299274+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:26 smithi019 bash[22501]: cluster 2024-09-16T14:35:25.737100+0000 mgr.a (mgr.14150) 154 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:26 smithi019 bash[22501]: audit 2024-09-16T14:35:26.267511+0000 mon.a (mon.0) 438 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:26 smithi019 bash[22501]: audit 2024-09-16T14:35:26.289895+0000 mon.a (mon.0) 439 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:26 smithi019 bash[22501]: audit 2024-09-16T14:35:26.299274+0000 mon.a (mon.0) 440 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:28.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:28 smithi139 bash[23309]: cluster 2024-09-16T14:35:27.737573+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:29.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:28 smithi162 bash[23377]: cluster 2024-09-16T14:35:27.737573+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:28 smithi019 bash[22501]: cluster 2024-09-16T14:35:27.737573+0000 mgr.a (mgr.14150) 155 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:29.858 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:35:31.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:30 smithi139 bash[23309]: cluster 2024-09-16T14:35:29.737982+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:31.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:30 smithi162 bash[23377]: cluster 2024-09-16T14:35:29.737982+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:30 smithi019 bash[22501]: cluster 2024-09-16T14:35:29.737982+0000 mgr.a (mgr.14150) 156 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:33.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:32 smithi139 bash[23309]: cluster 2024-09-16T14:35:31.738469+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:33.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:32 smithi139 bash[23309]: audit 2024-09-16T14:35:32.663309+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:32 smithi139 bash[23309]: audit 2024-09-16T14:35:32.671223+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:32 smithi139 bash[23309]: audit 2024-09-16T14:35:32.680941+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:32 smithi162 bash[23377]: cluster 2024-09-16T14:35:31.738469+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:33.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:32 smithi162 bash[23377]: audit 2024-09-16T14:35:32.663309+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:32 smithi162 bash[23377]: audit 2024-09-16T14:35:32.671223+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:32 smithi162 bash[23377]: audit 2024-09-16T14:35:32.680941+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:32 smithi019 bash[22501]: cluster 2024-09-16T14:35:31.738469+0000 mgr.a (mgr.14150) 157 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:32 smithi019 bash[22501]: audit 2024-09-16T14:35:32.663309+0000 mon.a (mon.0) 441 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:32 smithi019 bash[22501]: audit 2024-09-16T14:35:32.671223+0000 mon.a (mon.0) 442 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:32 smithi019 bash[22501]: audit 2024-09-16T14:35:32.680941+0000 mon.a (mon.0) 443 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:34 smithi019 bash[22501]: cluster 2024-09-16T14:35:33.738922+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:34 smithi019 bash[22501]: audit 2024-09-16T14:35:34.240792+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:35:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:34 smithi019 bash[22501]: audit 2024-09-16T14:35:34.243546+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:35:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:34 smithi019 bash[22501]: audit 2024-09-16T14:35:34.244220+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:35.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:34 smithi139 bash[23309]: cluster 2024-09-16T14:35:33.738922+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:35.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:34 smithi139 bash[23309]: audit 2024-09-16T14:35:34.240792+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:35:35.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:34 smithi139 bash[23309]: audit 2024-09-16T14:35:34.243546+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:35:35.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:34 smithi139 bash[23309]: audit 2024-09-16T14:35:34.244220+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:35.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:34 smithi162 bash[23377]: cluster 2024-09-16T14:35:33.738922+0000 mgr.a (mgr.14150) 158 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:35.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:34 smithi162 bash[23377]: audit 2024-09-16T14:35:34.240792+0000 mon.a (mon.0) 444 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:35:35.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:34 smithi162 bash[23377]: audit 2024-09-16T14:35:34.243546+0000 mon.a (mon.0) 445 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:35:35.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:34 smithi162 bash[23377]: audit 2024-09-16T14:35:34.244220+0000 mon.a (mon.0) 446 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:35 smithi139 bash[23309]: audit 2024-09-16T14:35:34.238398+0000 mgr.a (mgr.14150) 159 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:35:36.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:35 smithi162 bash[23377]: audit 2024-09-16T14:35:34.238398+0000 mgr.a (mgr.14150) 159 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:35:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:35 smithi019 bash[22501]: audit 2024-09-16T14:35:34.238398+0000 mgr.a (mgr.14150) 159 : audit [DBG] from='client.14235 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi019:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:35:37.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:36 smithi139 bash[23309]: cluster 2024-09-16T14:35:35.739417+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:37.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:36 smithi162 bash[23377]: cluster 2024-09-16T14:35:35.739417+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:36 smithi019 bash[22501]: cluster 2024-09-16T14:35:35.739417+0000 mgr.a (mgr.14150) 160 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:39.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:38 smithi139 bash[23309]: cluster 2024-09-16T14:35:37.739887+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:39.143 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:38 smithi019 bash[22501]: cluster 2024-09-16T14:35:37.739887+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:39.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:38 smithi162 bash[23377]: cluster 2024-09-16T14:35:37.739887+0000 mgr.a (mgr.14150) 161 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:41.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:40 smithi139 bash[23309]: cluster 2024-09-16T14:35:39.740365+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:41.154 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:40 smithi019 bash[22501]: cluster 2024-09-16T14:35:39.740365+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:41.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:40 smithi162 bash[23377]: cluster 2024-09-16T14:35:39.740365+0000 mgr.a (mgr.14150) 162 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:42.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:42 smithi139 bash[23309]: audit 2024-09-16T14:35:41.306117+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:42 smithi139 bash[23309]: audit 2024-09-16T14:35:41.313398+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:42 smithi139 bash[23309]: audit 2024-09-16T14:35:41.322749+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:42 smithi139 bash[23309]: cluster 2024-09-16T14:35:41.740728+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:42.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:42 smithi162 bash[23377]: audit 2024-09-16T14:35:41.306117+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:42 smithi162 bash[23377]: audit 2024-09-16T14:35:41.313398+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:42 smithi162 bash[23377]: audit 2024-09-16T14:35:41.322749+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:42 smithi162 bash[23377]: cluster 2024-09-16T14:35:41.740728+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:42.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:42 smithi019 bash[22501]: audit 2024-09-16T14:35:41.306117+0000 mon.a (mon.0) 447 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:42 smithi019 bash[22501]: audit 2024-09-16T14:35:41.313398+0000 mon.a (mon.0) 448 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:42 smithi019 bash[22501]: audit 2024-09-16T14:35:41.322749+0000 mon.a (mon.0) 449 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:42.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:42 smithi019 bash[22501]: cluster 2024-09-16T14:35:41.740728+0000 mgr.a (mgr.14150) 163 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:43.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:43 smithi139 bash[23309]: audit 2024-09-16T14:35:42.337910+0000 mon.a (mon.0) 450 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]: dispatch 2024-09-16T14:35:43.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:43 smithi139 bash[23309]: audit 2024-09-16T14:35:42.344910+0000 mon.a (mon.0) 451 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]': finished 2024-09-16T14:35:43.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:43 smithi139 bash[23309]: cluster 2024-09-16T14:35:42.345030+0000 mon.a (mon.0) 452 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T14:35:43.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:43 smithi139 bash[23309]: audit 2024-09-16T14:35:42.345173+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:35:43.605 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:43 smithi139 bash[23309]: audit 2024-09-16T14:35:43.021856+0000 mon.a (mon.0) 454 : audit [DBG] from='client.? 172.21.15.19:0/271286896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:35:43.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:43 smithi162 bash[23377]: audit 2024-09-16T14:35:42.337910+0000 mon.a (mon.0) 450 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]: dispatch 2024-09-16T14:35:43.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:43 smithi162 bash[23377]: audit 2024-09-16T14:35:42.344910+0000 mon.a (mon.0) 451 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]': finished 2024-09-16T14:35:43.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:43 smithi162 bash[23377]: cluster 2024-09-16T14:35:42.345030+0000 mon.a (mon.0) 452 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T14:35:43.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:43 smithi162 bash[23377]: audit 2024-09-16T14:35:42.345173+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:35:43.684 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:43 smithi162 bash[23377]: audit 2024-09-16T14:35:43.021856+0000 mon.a (mon.0) 454 : audit [DBG] from='client.? 172.21.15.19:0/271286896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:35:43.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:43 smithi019 bash[22501]: audit 2024-09-16T14:35:42.337910+0000 mon.a (mon.0) 450 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]: dispatch 2024-09-16T14:35:43.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:43 smithi019 bash[22501]: audit 2024-09-16T14:35:42.344910+0000 mon.a (mon.0) 451 : audit [INF] from='client.? 172.21.15.19:0/1776369874' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dd79196b-dedb-489c-84f8-451d64c1f50a"}]': finished 2024-09-16T14:35:43.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:43 smithi019 bash[22501]: cluster 2024-09-16T14:35:42.345030+0000 mon.a (mon.0) 452 : cluster [DBG] osdmap e10: 2 total, 1 up, 2 in 2024-09-16T14:35:43.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:43 smithi019 bash[22501]: audit 2024-09-16T14:35:42.345173+0000 mon.a (mon.0) 453 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:35:43.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:43 smithi019 bash[22501]: audit 2024-09-16T14:35:43.021856+0000 mon.a (mon.0) 454 : audit [DBG] from='client.? 172.21.15.19:0/271286896' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:35:44.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:44 smithi139 bash[23309]: cluster 2024-09-16T14:35:43.741178+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:44.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:44 smithi162 bash[23377]: cluster 2024-09-16T14:35:43.741178+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:44.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:44 smithi019 bash[22501]: cluster 2024-09-16T14:35:43.741178+0000 mgr.a (mgr.14150) 164 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:47.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:46 smithi139 bash[23309]: cluster 2024-09-16T14:35:45.741684+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:47.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:46 smithi139 bash[23309]: audit 2024-09-16T14:35:46.485690+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:46 smithi139 bash[23309]: audit 2024-09-16T14:35:46.489447+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:46 smithi139 bash[23309]: audit 2024-09-16T14:35:46.493836+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:46 smithi162 bash[23377]: cluster 2024-09-16T14:35:45.741684+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:47.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:46 smithi162 bash[23377]: audit 2024-09-16T14:35:46.485690+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:46 smithi162 bash[23377]: audit 2024-09-16T14:35:46.489447+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:46 smithi162 bash[23377]: audit 2024-09-16T14:35:46.493836+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:46 smithi019 bash[22501]: cluster 2024-09-16T14:35:45.741684+0000 mgr.a (mgr.14150) 165 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:46 smithi019 bash[22501]: audit 2024-09-16T14:35:46.485690+0000 mon.a (mon.0) 455 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:46 smithi019 bash[22501]: audit 2024-09-16T14:35:46.489447+0000 mon.a (mon.0) 456 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:46 smithi019 bash[22501]: audit 2024-09-16T14:35:46.493836+0000 mon.a (mon.0) 457 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:49.094 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:48 smithi139 bash[23309]: cluster 2024-09-16T14:35:47.742132+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:49.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:48 smithi162 bash[23377]: cluster 2024-09-16T14:35:47.742132+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:48 smithi019 bash[22501]: cluster 2024-09-16T14:35:47.742132+0000 mgr.a (mgr.14150) 166 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:51.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:50 smithi139 bash[23309]: cluster 2024-09-16T14:35:49.742615+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:51.126 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:50 smithi019 bash[22501]: cluster 2024-09-16T14:35:49.742615+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:51.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:50 smithi162 bash[23377]: cluster 2024-09-16T14:35:49.742615+0000 mgr.a (mgr.14150) 167 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:52.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:52 smithi019 bash[22501]: cluster 2024-09-16T14:35:51.743133+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:53.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:52 smithi139 bash[23309]: cluster 2024-09-16T14:35:51.743133+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:52 smithi162 bash[23377]: cluster 2024-09-16T14:35:51.743133+0000 mgr.a (mgr.14150) 168 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:53 smithi162 bash[23377]: audit 2024-09-16T14:35:52.884897+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:53 smithi162 bash[23377]: audit 2024-09-16T14:35:52.893269+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:53 smithi162 bash[23377]: audit 2024-09-16T14:35:52.903773+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:53 smithi162 bash[23377]: cluster 2024-09-16T14:35:53.743496+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:53 smithi019 bash[22501]: audit 2024-09-16T14:35:52.884897+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:53 smithi019 bash[22501]: audit 2024-09-16T14:35:52.893269+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:53 smithi019 bash[22501]: audit 2024-09-16T14:35:52.903773+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:53 smithi019 bash[22501]: cluster 2024-09-16T14:35:53.743496+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:54.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:53 smithi139 bash[23309]: audit 2024-09-16T14:35:52.884897+0000 mon.a (mon.0) 458 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:53 smithi139 bash[23309]: audit 2024-09-16T14:35:52.893269+0000 mon.a (mon.0) 459 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:53 smithi139 bash[23309]: audit 2024-09-16T14:35:52.903773+0000 mon.a (mon.0) 460 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:35:54.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:53 smithi139 bash[23309]: cluster 2024-09-16T14:35:53.743496+0000 mgr.a (mgr.14150) 169 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:57.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:56 smithi139 bash[23309]: cluster 2024-09-16T14:35:55.743940+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:57.162 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:56 smithi162 bash[23377]: cluster 2024-09-16T14:35:55.743940+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:57.212 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:56 smithi019 bash[22501]: cluster 2024-09-16T14:35:55.743940+0000 mgr.a (mgr.14150) 170 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:58.069 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:57 smithi162 bash[23377]: audit 2024-09-16T14:35:56.904076+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T14:35:58.069 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:57 smithi162 bash[23377]: audit 2024-09-16T14:35:56.906016+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:58.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:57 smithi139 bash[23309]: audit 2024-09-16T14:35:56.904076+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T14:35:58.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:57 smithi139 bash[23309]: audit 2024-09-16T14:35:56.906016+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:58.146 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:57 smithi019 bash[22501]: audit 2024-09-16T14:35:56.904076+0000 mon.a (mon.0) 461 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T14:35:58.146 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:57 smithi019 bash[22501]: audit 2024-09-16T14:35:56.906016+0000 mon.a (mon.0) 462 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:35:59.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:58 smithi139 bash[23309]: cephadm 2024-09-16T14:35:56.907722+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Deploying daemon osd.1 on smithi019 2024-09-16T14:35:59.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:35:58 smithi139 bash[23309]: cluster 2024-09-16T14:35:57.744375+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:59.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:58 smithi162 bash[23377]: cephadm 2024-09-16T14:35:56.907722+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Deploying daemon osd.1 on smithi019 2024-09-16T14:35:59.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:35:58 smithi162 bash[23377]: cluster 2024-09-16T14:35:57.744375+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:35:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:58 smithi019 bash[22501]: cephadm 2024-09-16T14:35:56.907722+0000 mgr.a (mgr.14150) 171 : cephadm [INF] Deploying daemon osd.1 on smithi019 2024-09-16T14:35:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:35:58 smithi019 bash[22501]: cluster 2024-09-16T14:35:57.744375+0000 mgr.a (mgr.14150) 172 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:01.048 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:36:00 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:01.048 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:00 smithi019 bash[22501]: cluster 2024-09-16T14:35:59.744936+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:01.049 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:00 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:01.049 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:36:00 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:01.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:00 smithi139 bash[23309]: cluster 2024-09-16T14:35:59.744936+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:01.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:00 smithi162 bash[23377]: cluster 2024-09-16T14:35:59.744936+0000 mgr.a (mgr.14150) 173 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:01.306 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:01.307 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:36:01 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:01.307 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:36:01 smithi019 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.303035+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.308015+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.308317+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.309773+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.313451+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.317398+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.447910+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.455074+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.457641+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.463662+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.464042+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.465178+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.106 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:01 smithi139 bash[23309]: audit 2024-09-16T14:36:01.471539+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.303035+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.308015+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.308317+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.309773+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.313451+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.317398+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.447910+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.455074+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.457641+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.463662+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.464042+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.465178+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:01 smithi162 bash[23377]: audit 2024-09-16T14:36:01.471539+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.303035+0000 mon.a (mon.0) 463 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.308015+0000 mon.a (mon.0) 464 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.308317+0000 mon.a (mon.0) 465 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.309773+0000 mon.a (mon.0) 466 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.313451+0000 mon.a (mon.0) 467 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.317398+0000 mon.a (mon.0) 468 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.447910+0000 mon.a (mon.0) 469 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.455074+0000 mon.a (mon.0) 470 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.457641+0000 mon.a (mon.0) 471 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.463662+0000 mon.a (mon.0) 472 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.464042+0000 mon.a (mon.0) 473 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.465178+0000 mon.a (mon.0) 474 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:02.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:01 smithi019 bash[22501]: audit 2024-09-16T14:36:01.471539+0000 mon.a (mon.0) 475 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:02.961 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:02 smithi019 bash[22501]: cephadm 2024-09-16T14:36:01.456507+0000 mgr.a (mgr.14150) 174 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:36:02.961 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:02 smithi019 bash[22501]: cluster 2024-09-16T14:36:01.745501+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:02 smithi139 bash[23309]: cephadm 2024-09-16T14:36:01.456507+0000 mgr.a (mgr.14150) 174 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:36:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:02 smithi139 bash[23309]: cluster 2024-09-16T14:36:01.745501+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:03.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:02 smithi162 bash[23377]: cephadm 2024-09-16T14:36:01.456507+0000 mgr.a (mgr.14150) 174 : cephadm [INF] Detected new or changed devices on smithi019 2024-09-16T14:36:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:02 smithi162 bash[23377]: cluster 2024-09-16T14:36:01.745501+0000 mgr.a (mgr.14150) 175 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:05.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:04 smithi139 bash[23309]: cluster 2024-09-16T14:36:03.745929+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:04 smithi162 bash[23377]: cluster 2024-09-16T14:36:03.745929+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:04 smithi019 bash[22501]: cluster 2024-09-16T14:36:03.745929+0000 mgr.a (mgr.14150) 176 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:07.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: cluster 2024-09-16T14:36:05.746403+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.498970+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.505949+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.509083+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.511757+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.513336+0000 mon.a (mon.0) 480 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.514410+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.520216+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.686699+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.694088+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:06 smithi139 bash[23309]: audit 2024-09-16T14:36:06.703386+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.170 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: cluster 2024-09-16T14:36:05.746403+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:07.170 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.498970+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.170 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.505949+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.170 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.509083+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.511757+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.513336+0000 mon.a (mon.0) 480 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.514410+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.520216+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.686699+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.694088+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:06 smithi019 bash[22501]: audit 2024-09-16T14:36:06.703386+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: cluster 2024-09-16T14:36:05.746403+0000 mgr.a (mgr.14150) 177 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.498970+0000 mon.a (mon.0) 476 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.505949+0000 mon.a (mon.0) 477 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.509083+0000 mon.a (mon.0) 478 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.511757+0000 mon.a (mon.0) 479 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.513336+0000 mon.a (mon.0) 480 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.514410+0000 mon.a (mon.0) 481 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.520216+0000 mon.a (mon.0) 482 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.686699+0000 mon.a (mon.0) 483 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.694088+0000 mon.a (mon.0) 484 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:07.184 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:06 smithi162 bash[23377]: audit 2024-09-16T14:36:06.703386+0000 mon.a (mon.0) 485 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:08.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:07 smithi139 bash[23309]: audit 2024-09-16T14:36:07.804576+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T14:36:08.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:07 smithi162 bash[23377]: audit 2024-09-16T14:36:07.804576+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T14:36:08.194 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:07 smithi019 bash[22501]: audit 2024-09-16T14:36:07.804576+0000 mon.a (mon.0) 486 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-16T14:36:09.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:08 smithi139 bash[23309]: cluster 2024-09-16T14:36:07.746872+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:09.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:08 smithi139 bash[23309]: audit 2024-09-16T14:36:07.835887+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T14:36:09.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:08 smithi139 bash[23309]: cluster 2024-09-16T14:36:07.835957+0000 mon.a (mon.0) 488 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T14:36:09.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:08 smithi139 bash[23309]: audit 2024-09-16T14:36:07.836113+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:09.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:08 smithi139 bash[23309]: audit 2024-09-16T14:36:07.836420+0000 mon.a (mon.0) 490 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:36:09.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:08 smithi162 bash[23377]: cluster 2024-09-16T14:36:07.746872+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:09.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:08 smithi162 bash[23377]: audit 2024-09-16T14:36:07.835887+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T14:36:09.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:08 smithi162 bash[23377]: cluster 2024-09-16T14:36:07.835957+0000 mon.a (mon.0) 488 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T14:36:09.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:08 smithi162 bash[23377]: audit 2024-09-16T14:36:07.836113+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:09.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:08 smithi162 bash[23377]: audit 2024-09-16T14:36:07.836420+0000 mon.a (mon.0) 490 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:36:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:08 smithi019 bash[22501]: cluster 2024-09-16T14:36:07.746872+0000 mgr.a (mgr.14150) 178 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:08 smithi019 bash[22501]: audit 2024-09-16T14:36:07.835887+0000 mon.a (mon.0) 487 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-16T14:36:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:08 smithi019 bash[22501]: cluster 2024-09-16T14:36:07.835957+0000 mon.a (mon.0) 488 : cluster [DBG] osdmap e11: 2 total, 1 up, 2 in 2024-09-16T14:36:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:08 smithi019 bash[22501]: audit 2024-09-16T14:36:07.836113+0000 mon.a (mon.0) 489 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:08 smithi019 bash[22501]: audit 2024-09-16T14:36:07.836420+0000 mon.a (mon.0) 490 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]: dispatch 2024-09-16T14:36:09.913 INFO:teuthology.orchestra.run.smithi019.stdout:Created osd(s) 1 on host 'smithi019' 2024-09-16T14:36:10.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:09 smithi162 bash[23377]: audit 2024-09-16T14:36:08.841248+0000 mon.a (mon.0) 491 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:36:10.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:09 smithi162 bash[23377]: cluster 2024-09-16T14:36:08.841384+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T14:36:10.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:09 smithi162 bash[23377]: audit 2024-09-16T14:36:08.842154+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:09 smithi162 bash[23377]: audit 2024-09-16T14:36:08.851432+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:09 smithi019 bash[22501]: audit 2024-09-16T14:36:08.841248+0000 mon.a (mon.0) 491 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:36:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:09 smithi019 bash[22501]: cluster 2024-09-16T14:36:08.841384+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T14:36:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:09 smithi019 bash[22501]: audit 2024-09-16T14:36:08.842154+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:09 smithi019 bash[22501]: audit 2024-09-16T14:36:08.851432+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:09 smithi139 bash[23309]: audit 2024-09-16T14:36:08.841248+0000 mon.a (mon.0) 491 : audit [INF] from='osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi019", "root=default"]}]': finished 2024-09-16T14:36:10.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:09 smithi139 bash[23309]: cluster 2024-09-16T14:36:08.841384+0000 mon.a (mon.0) 492 : cluster [DBG] osdmap e12: 2 total, 1 up, 2 in 2024-09-16T14:36:10.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:09 smithi139 bash[23309]: audit 2024-09-16T14:36:08.842154+0000 mon.a (mon.0) 493 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:09 smithi139 bash[23309]: audit 2024-09-16T14:36:08.851432+0000 mon.a (mon.0) 494 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:10.911 DEBUG:teuthology.orchestra.run.smithi019:osd.1> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.1.service 2024-09-16T14:36:10.914 INFO:tasks.cephadm:Deploying osd.2 on smithi139 with /dev/vg_nvme/lv_4... 2024-09-16T14:36:10.914 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: cluster 2024-09-16T14:36:08.763888+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: cluster 2024-09-16T14:36:08.763988+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: cluster 2024-09-16T14:36:09.747349+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: cluster 2024-09-16T14:36:09.853209+0000 mon.a (mon.0) 495 : cluster [INF] osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345] boot 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: cluster 2024-09-16T14:36:09.853318+0000 mon.a (mon.0) 496 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.854572+0000 mon.a (mon.0) 497 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.893786+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.901701+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.902061+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.904273+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.910594+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.921768+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.923747+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.925146+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:10 smithi162 bash[23377]: audit 2024-09-16T14:36:09.935500+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: cluster 2024-09-16T14:36:08.763888+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: cluster 2024-09-16T14:36:08.763988+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: cluster 2024-09-16T14:36:09.747349+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: cluster 2024-09-16T14:36:09.853209+0000 mon.a (mon.0) 495 : cluster [INF] osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345] boot 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: cluster 2024-09-16T14:36:09.853318+0000 mon.a (mon.0) 496 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.854572+0000 mon.a (mon.0) 497 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.893786+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.901701+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.223 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.902061+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.904273+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.910594+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.921768+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.923747+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.925146+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:11.224 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:10 smithi139 bash[23309]: audit 2024-09-16T14:36:09.935500+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: cluster 2024-09-16T14:36:08.763888+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:36:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: cluster 2024-09-16T14:36:08.763988+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:36:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: cluster 2024-09-16T14:36:09.747349+0000 mgr.a (mgr.14150) 179 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: cluster 2024-09-16T14:36:09.853209+0000 mon.a (mon.0) 495 : cluster [INF] osd.1 [v2:172.21.15.19:6810/3239863345,v1:172.21.15.19:6811/3239863345] boot 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: cluster 2024-09-16T14:36:09.853318+0000 mon.a (mon.0) 496 : cluster [DBG] osdmap e13: 2 total, 2 up, 2 in 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.854572+0000 mon.a (mon.0) 497 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.893786+0000 mon.a (mon.0) 498 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.901701+0000 mon.a (mon.0) 499 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.902061+0000 mon.a (mon.0) 500 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.904273+0000 mon.a (mon.0) 501 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.910594+0000 mon.a (mon.0) 502 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.921768+0000 mon.a (mon.0) 503 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.923747+0000 mon.a (mon.0) 504 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.925146+0000 mon.a (mon.0) 505 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:11.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:10 smithi019 bash[22501]: audit 2024-09-16T14:36:09.935500+0000 mon.a (mon.0) 506 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:11.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:11 smithi019 bash[22501]: cephadm 2024-09-16T14:36:09.912436+0000 mgr.a (mgr.14150) 180 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 8122M 2024-09-16T14:36:11.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:11 smithi019 bash[22501]: cluster 2024-09-16T14:36:10.865913+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T14:36:11.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:11 smithi019 bash[22501]: cluster 2024-09-16T14:36:11.747859+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:12.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:11 smithi139 bash[23309]: cephadm 2024-09-16T14:36:09.912436+0000 mgr.a (mgr.14150) 180 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 8122M 2024-09-16T14:36:12.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:11 smithi139 bash[23309]: cluster 2024-09-16T14:36:10.865913+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T14:36:12.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:11 smithi139 bash[23309]: cluster 2024-09-16T14:36:11.747859+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:12.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:11 smithi162 bash[23377]: cephadm 2024-09-16T14:36:09.912436+0000 mgr.a (mgr.14150) 180 : cephadm [INF] Adjusting osd_memory_target on smithi019 to 8122M 2024-09-16T14:36:12.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:11 smithi162 bash[23377]: cluster 2024-09-16T14:36:10.865913+0000 mon.a (mon.0) 507 : cluster [DBG] osdmap e14: 2 total, 2 up, 2 in 2024-09-16T14:36:12.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:11 smithi162 bash[23377]: cluster 2024-09-16T14:36:11.747859+0000 mgr.a (mgr.14150) 181 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:14.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:14 smithi162 bash[23377]: audit 2024-09-16T14:36:13.109271+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:14 smithi162 bash[23377]: audit 2024-09-16T14:36:13.119100+0000 mon.a (mon.0) 509 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:14 smithi162 bash[23377]: audit 2024-09-16T14:36:13.130389+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:14 smithi162 bash[23377]: cluster 2024-09-16T14:36:13.748237+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:14.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:14 smithi019 bash[22501]: audit 2024-09-16T14:36:13.109271+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:14 smithi019 bash[22501]: audit 2024-09-16T14:36:13.119100+0000 mon.a (mon.0) 509 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:14 smithi019 bash[22501]: audit 2024-09-16T14:36:13.130389+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:14 smithi019 bash[22501]: cluster 2024-09-16T14:36:13.748237+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:14.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:14 smithi139 bash[23309]: audit 2024-09-16T14:36:13.109271+0000 mon.a (mon.0) 508 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:14 smithi139 bash[23309]: audit 2024-09-16T14:36:13.119100+0000 mon.a (mon.0) 509 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:14 smithi139 bash[23309]: audit 2024-09-16T14:36:13.130389+0000 mon.a (mon.0) 510 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:14.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:14 smithi139 bash[23309]: cluster 2024-09-16T14:36:13.748237+0000 mgr.a (mgr.14150) 182 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:15.835 INFO:teuthology.orchestra.run.smithi139.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T14:36:16.973 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:16 smithi139 bash[23309]: cluster 2024-09-16T14:36:15.748666+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:17.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:16 smithi162 bash[23377]: cluster 2024-09-16T14:36:15.748666+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:16 smithi019 bash[22501]: cluster 2024-09-16T14:36:15.748666+0000 mgr.a (mgr.14150) 183 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:18.508 INFO:teuthology.orchestra.run.smithi139.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-16T14:36:18.671 INFO:teuthology.orchestra.run.smithi139.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-16T14:36:18.687 INFO:teuthology.orchestra.run.smithi139.stderr: stderr: 10+0 records in 2024-09-16T14:36:18.687 INFO:teuthology.orchestra.run.smithi139.stderr:10+0 records out 2024-09-16T14:36:18.687 INFO:teuthology.orchestra.run.smithi139.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0133343 s, 786 MB/s 2024-09-16T14:36:18.687 INFO:teuthology.orchestra.run.smithi139.stderr: stderr: 2024-09-16T14:36:18.687 INFO:teuthology.orchestra.run.smithi139.stderr:--> Zapping successful for: 2024-09-16T14:36:19.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:18 smithi139 bash[23309]: cluster 2024-09-16T14:36:17.749169+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:19.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:18 smithi162 bash[23377]: cluster 2024-09-16T14:36:17.749169+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:18 smithi019 bash[22501]: cluster 2024-09-16T14:36:17.749169+0000 mgr.a (mgr.14150) 184 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:19.274 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi139:vg_nvme/lv_4 2024-09-16T14:36:21.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:20 smithi139 bash[23309]: cluster 2024-09-16T14:36:19.749658+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:21.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:20 smithi162 bash[23377]: cluster 2024-09-16T14:36:19.749658+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:20 smithi019 bash[22501]: cluster 2024-09-16T14:36:19.749658+0000 mgr.a (mgr.14150) 185 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:23.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:22 smithi139 bash[23309]: cluster 2024-09-16T14:36:21.750149+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:23.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:22 smithi162 bash[23377]: cluster 2024-09-16T14:36:21.750149+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:23.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:22 smithi019 bash[22501]: cluster 2024-09-16T14:36:21.750149+0000 mgr.a (mgr.14150) 186 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:23.943 INFO:teuthology.orchestra.run.smithi139.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T14:36:25.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:24 smithi139 bash[23309]: cluster 2024-09-16T14:36:23.750617+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:25.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:24 smithi139 bash[23309]: audit 2024-09-16T14:36:24.134085+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:24 smithi139 bash[23309]: audit 2024-09-16T14:36:24.141598+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:24 smithi139 bash[23309]: audit 2024-09-16T14:36:24.151453+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:24 smithi162 bash[23377]: cluster 2024-09-16T14:36:23.750617+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:25.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:24 smithi162 bash[23377]: audit 2024-09-16T14:36:24.134085+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:24 smithi162 bash[23377]: audit 2024-09-16T14:36:24.141598+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:24 smithi162 bash[23377]: audit 2024-09-16T14:36:24.151453+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:24 smithi019 bash[22501]: cluster 2024-09-16T14:36:23.750617+0000 mgr.a (mgr.14150) 187 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:24 smithi019 bash[22501]: audit 2024-09-16T14:36:24.134085+0000 mon.a (mon.0) 511 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:24 smithi019 bash[22501]: audit 2024-09-16T14:36:24.141598+0000 mon.a (mon.0) 512 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:24 smithi019 bash[22501]: audit 2024-09-16T14:36:24.151453+0000 mon.a (mon.0) 513 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:26 smithi139 bash[23309]: cluster 2024-09-16T14:36:25.751083+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:26 smithi139 bash[23309]: audit 2024-09-16T14:36:26.678723+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:36:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:26 smithi139 bash[23309]: audit 2024-09-16T14:36:26.684794+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:36:27.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:26 smithi139 bash[23309]: audit 2024-09-16T14:36:26.686448+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:27.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:26 smithi162 bash[23377]: cluster 2024-09-16T14:36:25.751083+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:26 smithi162 bash[23377]: audit 2024-09-16T14:36:26.678723+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:36:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:26 smithi162 bash[23377]: audit 2024-09-16T14:36:26.684794+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:36:27.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:26 smithi162 bash[23377]: audit 2024-09-16T14:36:26.686448+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:26 smithi019 bash[22501]: cluster 2024-09-16T14:36:25.751083+0000 mgr.a (mgr.14150) 188 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:26 smithi019 bash[22501]: audit 2024-09-16T14:36:26.678723+0000 mon.a (mon.0) 514 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:36:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:26 smithi019 bash[22501]: audit 2024-09-16T14:36:26.684794+0000 mon.a (mon.0) 515 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:36:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:26 smithi019 bash[22501]: audit 2024-09-16T14:36:26.686448+0000 mon.a (mon.0) 516 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:28.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:27 smithi139 bash[23309]: audit 2024-09-16T14:36:26.671982+0000 mgr.a (mgr.14150) 189 : audit [DBG] from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:36:28.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:27 smithi139 bash[23309]: audit 2024-09-16T14:36:26.908283+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:27 smithi139 bash[23309]: audit 2024-09-16T14:36:26.915852+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:27 smithi139 bash[23309]: audit 2024-09-16T14:36:26.925301+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:27 smithi162 bash[23377]: audit 2024-09-16T14:36:26.671982+0000 mgr.a (mgr.14150) 189 : audit [DBG] from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:36:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:27 smithi162 bash[23377]: audit 2024-09-16T14:36:26.908283+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:27 smithi162 bash[23377]: audit 2024-09-16T14:36:26.915852+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:27 smithi162 bash[23377]: audit 2024-09-16T14:36:26.925301+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:27 smithi019 bash[22501]: audit 2024-09-16T14:36:26.671982+0000 mgr.a (mgr.14150) 189 : audit [DBG] from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:36:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:27 smithi019 bash[22501]: audit 2024-09-16T14:36:26.908283+0000 mon.a (mon.0) 517 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:27 smithi019 bash[22501]: audit 2024-09-16T14:36:26.915852+0000 mon.a (mon.0) 518 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:27 smithi019 bash[22501]: audit 2024-09-16T14:36:26.925301+0000 mon.a (mon.0) 519 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:29.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:28 smithi139 bash[23309]: cluster 2024-09-16T14:36:27.751575+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:29.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:28 smithi162 bash[23377]: cluster 2024-09-16T14:36:27.751575+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:28 smithi019 bash[22501]: cluster 2024-09-16T14:36:27.751575+0000 mgr.a (mgr.14150) 190 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:30.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:30 smithi019 bash[22501]: cluster 2024-09-16T14:36:29.752028+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:31.083 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:30 smithi139 bash[23309]: cluster 2024-09-16T14:36:29.752028+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:31.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:30 smithi162 bash[23377]: cluster 2024-09-16T14:36:29.752028+0000 mgr.a (mgr.14150) 191 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:33.074 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:32 smithi139 bash[23309]: cluster 2024-09-16T14:36:31.752427+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:33.111 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:32 smithi019 bash[22501]: cluster 2024-09-16T14:36:31.752427+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:33.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:32 smithi162 bash[23377]: cluster 2024-09-16T14:36:31.752427+0000 mgr.a (mgr.14150) 192 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:34.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:34 smithi139 bash[23309]: audit 2024-09-16T14:36:33.246354+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:34 smithi139 bash[23309]: audit 2024-09-16T14:36:33.254138+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:34 smithi139 bash[23309]: audit 2024-09-16T14:36:33.265140+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:34 smithi139 bash[23309]: cluster 2024-09-16T14:36:33.752884+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:34.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:34 smithi162 bash[23377]: audit 2024-09-16T14:36:33.246354+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:34 smithi162 bash[23377]: audit 2024-09-16T14:36:33.254138+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:34 smithi162 bash[23377]: audit 2024-09-16T14:36:33.265140+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:34 smithi162 bash[23377]: cluster 2024-09-16T14:36:33.752884+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:34.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:34 smithi019 bash[22501]: audit 2024-09-16T14:36:33.246354+0000 mon.a (mon.0) 520 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:34 smithi019 bash[22501]: audit 2024-09-16T14:36:33.254138+0000 mon.a (mon.0) 521 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:34 smithi019 bash[22501]: audit 2024-09-16T14:36:33.265140+0000 mon.a (mon.0) 522 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:34.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:34 smithi019 bash[22501]: cluster 2024-09-16T14:36:33.752884+0000 mgr.a (mgr.14150) 193 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:35.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:35 smithi162 bash[23377]: audit 2024-09-16T14:36:35.592791+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.139:0/3516550032' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:35.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:35 smithi162 bash[23377]: audit 2024-09-16T14:36:35.592802+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:35.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:35 smithi162 bash[23377]: audit 2024-09-16T14:36:35.601096+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]': finished 2024-09-16T14:36:35.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:35 smithi162 bash[23377]: cluster 2024-09-16T14:36:35.601227+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T14:36:35.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:35 smithi162 bash[23377]: audit 2024-09-16T14:36:35.601528+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:36:35.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:35 smithi019 bash[22501]: audit 2024-09-16T14:36:35.592791+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.139:0/3516550032' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:35.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:35 smithi019 bash[22501]: audit 2024-09-16T14:36:35.592802+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:35.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:35 smithi019 bash[22501]: audit 2024-09-16T14:36:35.601096+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]': finished 2024-09-16T14:36:35.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:35 smithi019 bash[22501]: cluster 2024-09-16T14:36:35.601227+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T14:36:35.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:35 smithi019 bash[22501]: audit 2024-09-16T14:36:35.601528+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:36:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:35 smithi139 bash[23309]: audit 2024-09-16T14:36:35.592791+0000 mon.b (mon.2) 6 : audit [INF] from='client.? 172.21.15.139:0/3516550032' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:35 smithi139 bash[23309]: audit 2024-09-16T14:36:35.592802+0000 mon.a (mon.0) 523 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]: dispatch 2024-09-16T14:36:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:35 smithi139 bash[23309]: audit 2024-09-16T14:36:35.601096+0000 mon.a (mon.0) 524 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59cbbdf8-ad43-417e-a459-ae7fab2b7faa"}]': finished 2024-09-16T14:36:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:35 smithi139 bash[23309]: cluster 2024-09-16T14:36:35.601227+0000 mon.a (mon.0) 525 : cluster [DBG] osdmap e15: 3 total, 2 up, 3 in 2024-09-16T14:36:36.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:35 smithi139 bash[23309]: audit 2024-09-16T14:36:35.601528+0000 mon.a (mon.0) 526 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:36:36.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:36 smithi162 bash[23377]: cluster 2024-09-16T14:36:35.753338+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:36.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:36 smithi162 bash[23377]: audit 2024-09-16T14:36:36.264307+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.139:0/3041482032' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:36:36.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:36 smithi019 bash[22501]: cluster 2024-09-16T14:36:35.753338+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:36.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:36 smithi019 bash[22501]: audit 2024-09-16T14:36:36.264307+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.139:0/3041482032' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:36:37.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:36 smithi139 bash[23309]: cluster 2024-09-16T14:36:35.753338+0000 mgr.a (mgr.14150) 194 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:37.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:36 smithi139 bash[23309]: audit 2024-09-16T14:36:36.264307+0000 mon.b (mon.2) 7 : audit [DBG] from='client.? 172.21.15.139:0/3041482032' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:36:39.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:38 smithi139 bash[23309]: cluster 2024-09-16T14:36:37.753759+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:39.124 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:38 smithi162 bash[23377]: cluster 2024-09-16T14:36:37.753759+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:39.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:38 smithi019 bash[22501]: cluster 2024-09-16T14:36:37.753759+0000 mgr.a (mgr.14150) 195 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:40.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:40 smithi162 bash[23377]: cluster 2024-09-16T14:36:39.754216+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:41.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:40 smithi139 bash[23309]: cluster 2024-09-16T14:36:39.754216+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:41.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:40 smithi019 bash[22501]: cluster 2024-09-16T14:36:39.754216+0000 mgr.a (mgr.14150) 196 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:42 smithi019 bash[22501]: cluster 2024-09-16T14:36:41.754746+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:43.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:42 smithi139 bash[23309]: cluster 2024-09-16T14:36:41.754746+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:43.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:42 smithi162 bash[23377]: cluster 2024-09-16T14:36:41.754746+0000 mgr.a (mgr.14150) 197 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:44 smithi139 bash[23309]: cluster 2024-09-16T14:36:43.755180+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:44 smithi139 bash[23309]: audit 2024-09-16T14:36:44.344809+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:44 smithi139 bash[23309]: audit 2024-09-16T14:36:44.354578+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:44 smithi139 bash[23309]: audit 2024-09-16T14:36:44.365560+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:44 smithi162 bash[23377]: cluster 2024-09-16T14:36:43.755180+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:44 smithi162 bash[23377]: audit 2024-09-16T14:36:44.344809+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:44 smithi162 bash[23377]: audit 2024-09-16T14:36:44.354578+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:44 smithi162 bash[23377]: audit 2024-09-16T14:36:44.365560+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:44 smithi019 bash[22501]: cluster 2024-09-16T14:36:43.755180+0000 mgr.a (mgr.14150) 198 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:44 smithi019 bash[22501]: audit 2024-09-16T14:36:44.344809+0000 mon.a (mon.0) 527 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:44 smithi019 bash[22501]: audit 2024-09-16T14:36:44.354578+0000 mon.a (mon.0) 528 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:44 smithi019 bash[22501]: audit 2024-09-16T14:36:44.365560+0000 mon.a (mon.0) 529 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:47.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:46 smithi139 bash[23309]: cluster 2024-09-16T14:36:45.755603+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:47.149 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:46 smithi162 bash[23377]: cluster 2024-09-16T14:36:45.755603+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:46 smithi019 bash[22501]: cluster 2024-09-16T14:36:45.755603+0000 mgr.a (mgr.14150) 199 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: audit 2024-09-16T14:36:47.126892+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: audit 2024-09-16T14:36:47.135843+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: audit 2024-09-16T14:36:47.146643+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: audit 2024-09-16T14:36:47.741791+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: audit 2024-09-16T14:36:47.743606+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: cephadm 2024-09-16T14:36:47.745034+0000 mgr.a (mgr.14150) 200 : cephadm [INF] Deploying daemon osd.2 on smithi139 2024-09-16T14:36:48.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:48 smithi139 bash[23309]: cluster 2024-09-16T14:36:47.756174+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:48.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: audit 2024-09-16T14:36:47.126892+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: audit 2024-09-16T14:36:47.135843+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: audit 2024-09-16T14:36:47.146643+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: audit 2024-09-16T14:36:47.741791+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T14:36:48.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: audit 2024-09-16T14:36:47.743606+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:48.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: cephadm 2024-09-16T14:36:47.745034+0000 mgr.a (mgr.14150) 200 : cephadm [INF] Deploying daemon osd.2 on smithi139 2024-09-16T14:36:48.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:48 smithi162 bash[23377]: cluster 2024-09-16T14:36:47.756174+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: audit 2024-09-16T14:36:47.126892+0000 mon.a (mon.0) 530 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: audit 2024-09-16T14:36:47.135843+0000 mon.a (mon.0) 531 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: audit 2024-09-16T14:36:47.146643+0000 mon.a (mon.0) 532 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: audit 2024-09-16T14:36:47.741791+0000 mon.a (mon.0) 533 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: audit 2024-09-16T14:36:47.743606+0000 mon.a (mon.0) 534 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: cephadm 2024-09-16T14:36:47.745034+0000 mgr.a (mgr.14150) 200 : cephadm [INF] Deploying daemon osd.2 on smithi139 2024-09-16T14:36:48.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:48 smithi019 bash[22501]: cluster 2024-09-16T14:36:47.756174+0000 mgr.a (mgr.14150) 201 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:51.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:50 smithi139 bash[23309]: cluster 2024-09-16T14:36:49.756679+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:51.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:50 smithi162 bash[23377]: cluster 2024-09-16T14:36:49.756679+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:50 smithi019 bash[22501]: cluster 2024-09-16T14:36:49.756679+0000 mgr.a (mgr.14150) 202 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:52.005 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:51 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:52.005 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:36:51 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:52.275 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:52.275 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:36:52 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: cluster 2024-09-16T14:36:51.757179+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.287497+0000 mon.a (mon.0) 535 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.295988+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.296417+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.298867+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.304774+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.108 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:52 smithi139 bash[23309]: audit 2024-09-16T14:36:52.310751+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: cluster 2024-09-16T14:36:51.757179+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.287497+0000 mon.a (mon.0) 535 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.295988+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.296417+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:53.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.298867+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:53.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.304774+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:52 smithi162 bash[23377]: audit 2024-09-16T14:36:52.310751+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: cluster 2024-09-16T14:36:51.757179+0000 mgr.a (mgr.14150) 203 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.287497+0000 mon.a (mon.0) 535 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.295988+0000 mon.a (mon.0) 536 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.296417+0000 mon.a (mon.0) 537 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.298867+0000 mon.a (mon.0) 538 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.304774+0000 mon.a (mon.0) 539 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:52 smithi019 bash[22501]: audit 2024-09-16T14:36:52.310751+0000 mon.a (mon.0) 540 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.443426+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.450285+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.454356+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.461142+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.461647+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.462891+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: audit 2024-09-16T14:36:53.471168+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.604 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:54 smithi139 bash[23309]: cluster 2024-09-16T14:36:53.757568+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:54.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.443426+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.450285+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.454356+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:54.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.461142+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.461647+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:54.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.462891+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:54.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: audit 2024-09-16T14:36:53.471168+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:54 smithi019 bash[22501]: cluster 2024-09-16T14:36:53.757568+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:54.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.443426+0000 mon.a (mon.0) 541 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.450285+0000 mon.a (mon.0) 542 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.454356+0000 mon.a (mon.0) 543 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:54.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.461142+0000 mon.a (mon.0) 544 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.461647+0000 mon.a (mon.0) 545 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:54.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.462891+0000 mon.a (mon.0) 546 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:54.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: audit 2024-09-16T14:36:53.471168+0000 mon.a (mon.0) 547 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:54.933 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:54 smithi162 bash[23377]: cluster 2024-09-16T14:36:53.757568+0000 mgr.a (mgr.14150) 204 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:57.026 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:56 smithi139 bash[23309]: cluster 2024-09-16T14:36:55.757998+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:56 smithi162 bash[23377]: cluster 2024-09-16T14:36:55.757998+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:56 smithi019 bash[22501]: cluster 2024-09-16T14:36:55.757998+0000 mgr.a (mgr.14150) 205 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.005377+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.013567+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: cephadm 2024-09-16T14:36:57.016275+0000 mgr.a (mgr.14150) 206 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.018299+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.023583+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.023902+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.026514+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:58.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: audit 2024-09-16T14:36:57.036217+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.355 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:36:58 smithi139 bash[23309]: cluster 2024-09-16T14:36:57.758571+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:58.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.005377+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.013567+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: cephadm 2024-09-16T14:36:57.016275+0000 mgr.a (mgr.14150) 206 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.018299+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.023583+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.023902+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.026514+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: audit 2024-09-16T14:36:57.036217+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.433 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:36:58 smithi162 bash[23377]: cluster 2024-09-16T14:36:57.758571+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:36:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.005377+0000 mon.a (mon.0) 548 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.013567+0000 mon.a (mon.0) 549 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: cephadm 2024-09-16T14:36:57.016275+0000 mgr.a (mgr.14150) 206 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.018299+0000 mon.a (mon.0) 550 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.023583+0000 mon.a (mon.0) 551 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.023902+0000 mon.a (mon.0) 552 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.026514+0000 mon.a (mon.0) 553 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: audit 2024-09-16T14:36:57.036217+0000 mon.a (mon.0) 554 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:36:58.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:36:58 smithi019 bash[22501]: cluster 2024-09-16T14:36:57.758571+0000 mgr.a (mgr.14150) 207 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:01.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:00 smithi139 bash[23309]: cluster 2024-09-16T14:36:59.759201+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:01.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:00 smithi139 bash[23309]: audit 2024-09-16T14:36:59.828386+0000 mon.a (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:01.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:00 smithi139 bash[23309]: audit 2024-09-16T14:36:59.828890+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:01.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:00 smithi162 bash[23377]: cluster 2024-09-16T14:36:59.759201+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:01.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:00 smithi162 bash[23377]: audit 2024-09-16T14:36:59.828386+0000 mon.a (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:01.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:00 smithi162 bash[23377]: audit 2024-09-16T14:36:59.828890+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:01.203 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:00 smithi019 bash[22501]: cluster 2024-09-16T14:36:59.759201+0000 mgr.a (mgr.14150) 208 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:01.203 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:00 smithi019 bash[22501]: audit 2024-09-16T14:36:59.828386+0000 mon.a (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:01.204 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:00 smithi019 bash[22501]: audit 2024-09-16T14:36:59.828890+0000 mon.b (mon.2) 8 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-16T14:37:02.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:01 smithi139 bash[23309]: audit 2024-09-16T14:37:00.826006+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T14:37:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:01 smithi139 bash[23309]: cluster 2024-09-16T14:37:00.826170+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T14:37:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:01 smithi139 bash[23309]: audit 2024-09-16T14:37:00.826421+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:01 smithi139 bash[23309]: audit 2024-09-16T14:37:00.828321+0000 mon.a (mon.0) 559 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:01 smithi139 bash[23309]: audit 2024-09-16T14:37:00.828569+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:01 smithi162 bash[23377]: audit 2024-09-16T14:37:00.826006+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T14:37:02.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:01 smithi162 bash[23377]: cluster 2024-09-16T14:37:00.826170+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T14:37:02.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:01 smithi162 bash[23377]: audit 2024-09-16T14:37:00.826421+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:02.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:01 smithi162 bash[23377]: audit 2024-09-16T14:37:00.828321+0000 mon.a (mon.0) 559 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:01 smithi162 bash[23377]: audit 2024-09-16T14:37:00.828569+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:01 smithi019 bash[22501]: audit 2024-09-16T14:37:00.826006+0000 mon.a (mon.0) 556 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-16T14:37:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:01 smithi019 bash[22501]: cluster 2024-09-16T14:37:00.826170+0000 mon.a (mon.0) 557 : cluster [DBG] osdmap e16: 3 total, 2 up, 3 in 2024-09-16T14:37:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:01 smithi019 bash[22501]: audit 2024-09-16T14:37:00.826421+0000 mon.a (mon.0) 558 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:01 smithi019 bash[22501]: audit 2024-09-16T14:37:00.828321+0000 mon.a (mon.0) 559 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:01 smithi019 bash[22501]: audit 2024-09-16T14:37:00.828569+0000 mon.b (mon.2) 9 : audit [INF] from='osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:02.386 INFO:teuthology.orchestra.run.smithi139.stdout:Created osd(s) 2 on host 'smithi139' 2024-09-16T14:37:02.964 DEBUG:teuthology.orchestra.run.smithi139:osd.2> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.2.service 2024-09-16T14:37:02.967 INFO:tasks.cephadm:Deploying osd.3 on smithi139 with /dev/vg_nvme/lv_3... 2024-09-16T14:37:02.967 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-16T14:37:03.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: cluster 2024-09-16T14:37:00.837057+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: cluster 2024-09-16T14:37:00.837135+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: cluster 2024-09-16T14:37:01.759755+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:01.835358+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: cluster 2024-09-16T14:37:01.835564+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:01.836015+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:01.843363+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.365071+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.373196+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.373677+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.381600+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.389508+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.391669+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:03.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.393383+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:03.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:02 smithi139 bash[23309]: audit 2024-09-16T14:37:02.403138+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: cluster 2024-09-16T14:37:00.837057+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:03.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: cluster 2024-09-16T14:37:00.837135+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: cluster 2024-09-16T14:37:01.759755+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:01.835358+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: cluster 2024-09-16T14:37:01.835564+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:01.836015+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:01.843363+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.365071+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.373196+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.373677+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.381600+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.389508+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.391669+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.393383+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:03.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:02 smithi162 bash[23377]: audit 2024-09-16T14:37:02.403138+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: cluster 2024-09-16T14:37:00.837057+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: cluster 2024-09-16T14:37:00.837135+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: cluster 2024-09-16T14:37:01.759755+0000 mgr.a (mgr.14150) 209 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:01.835358+0000 mon.a (mon.0) 560 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: cluster 2024-09-16T14:37:01.835564+0000 mon.a (mon.0) 561 : cluster [DBG] osdmap e17: 3 total, 2 up, 3 in 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:01.836015+0000 mon.a (mon.0) 562 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:01.843363+0000 mon.a (mon.0) 563 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.365071+0000 mon.a (mon.0) 564 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.373196+0000 mon.a (mon.0) 565 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.373677+0000 mon.a (mon.0) 566 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.381600+0000 mon.a (mon.0) 567 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.389508+0000 mon.a (mon.0) 568 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:03.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.391669+0000 mon.a (mon.0) 569 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:03.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.393383+0000 mon.a (mon.0) 570 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:03.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:02 smithi019 bash[22501]: audit 2024-09-16T14:37:02.403138+0000 mon.a (mon.0) 571 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:04.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:03 smithi162 bash[23377]: cephadm 2024-09-16T14:37:02.375082+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 16241M 2024-09-16T14:37:04.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:03 smithi162 bash[23377]: cluster 2024-09-16T14:37:02.837987+0000 mon.a (mon.0) 572 : cluster [INF] osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036] boot 2024-09-16T14:37:04.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:03 smithi162 bash[23377]: cluster 2024-09-16T14:37:02.838045+0000 mon.a (mon.0) 573 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T14:37:04.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:03 smithi162 bash[23377]: audit 2024-09-16T14:37:02.838730+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:04.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:03 smithi162 bash[23377]: audit 2024-09-16T14:37:02.924596+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:03 smithi019 bash[22501]: cephadm 2024-09-16T14:37:02.375082+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 16241M 2024-09-16T14:37:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:03 smithi019 bash[22501]: cluster 2024-09-16T14:37:02.837987+0000 mon.a (mon.0) 572 : cluster [INF] osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036] boot 2024-09-16T14:37:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:03 smithi019 bash[22501]: cluster 2024-09-16T14:37:02.838045+0000 mon.a (mon.0) 573 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T14:37:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:03 smithi019 bash[22501]: audit 2024-09-16T14:37:02.838730+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:03 smithi019 bash[22501]: audit 2024-09-16T14:37:02.924596+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:04.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:03 smithi139 bash[23309]: cephadm 2024-09-16T14:37:02.375082+0000 mgr.a (mgr.14150) 210 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 16241M 2024-09-16T14:37:04.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:03 smithi139 bash[23309]: cluster 2024-09-16T14:37:02.837987+0000 mon.a (mon.0) 572 : cluster [INF] osd.2 [v2:172.21.15.139:6800/3553431036,v1:172.21.15.139:6801/3553431036] boot 2024-09-16T14:37:04.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:03 smithi139 bash[23309]: cluster 2024-09-16T14:37:02.838045+0000 mon.a (mon.0) 573 : cluster [DBG] osdmap e18: 3 total, 3 up, 3 in 2024-09-16T14:37:04.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:03 smithi139 bash[23309]: audit 2024-09-16T14:37:02.838730+0000 mon.a (mon.0) 574 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-16T14:37:04.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:03 smithi139 bash[23309]: audit 2024-09-16T14:37:02.924596+0000 mon.a (mon.0) 575 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: cluster 2024-09-16T14:37:03.760250+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: audit 2024-09-16T14:37:03.858142+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: cluster 2024-09-16T14:37:03.858273+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: audit 2024-09-16T14:37:03.860304+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: audit 2024-09-16T14:37:04.573506+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: audit 2024-09-16T14:37:04.582220+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:04 smithi162 bash[23377]: audit 2024-09-16T14:37:04.591919+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: cluster 2024-09-16T14:37:03.760250+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: audit 2024-09-16T14:37:03.858142+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: cluster 2024-09-16T14:37:03.858273+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T14:37:05.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: audit 2024-09-16T14:37:03.860304+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:37:05.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: audit 2024-09-16T14:37:04.573506+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: audit 2024-09-16T14:37:04.582220+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:04 smithi019 bash[22501]: audit 2024-09-16T14:37:04.591919+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: cluster 2024-09-16T14:37:03.760250+0000 mgr.a (mgr.14150) 211 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: audit 2024-09-16T14:37:03.858142+0000 mon.a (mon.0) 576 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' 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-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: cluster 2024-09-16T14:37:03.858273+0000 mon.a (mon.0) 577 : cluster [DBG] osdmap e19: 3 total, 3 up, 3 in 2024-09-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: audit 2024-09-16T14:37:03.860304+0000 mon.a (mon.0) 578 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: audit 2024-09-16T14:37:04.573506+0000 mon.a (mon.0) 579 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: audit 2024-09-16T14:37:04.582220+0000 mon.a (mon.0) 580 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:05.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:04 smithi139 bash[23309]: audit 2024-09-16T14:37:04.591919+0000 mon.a (mon.0) 581 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:06.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:05 smithi162 bash[23377]: audit 2024-09-16T14:37:04.859521+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T14:37:06.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:05 smithi162 bash[23377]: cluster 2024-09-16T14:37:04.859786+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T14:37:06.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:05 smithi019 bash[22501]: audit 2024-09-16T14:37:04.859521+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T14:37:06.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:05 smithi019 bash[22501]: cluster 2024-09-16T14:37:04.859786+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T14:37:06.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:05 smithi139 bash[23309]: audit 2024-09-16T14:37:04.859521+0000 mon.a (mon.0) 582 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-16T14:37:06.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:05 smithi139 bash[23309]: cluster 2024-09-16T14:37:04.859786+0000 mon.a (mon.0) 583 : cluster [DBG] osdmap e20: 3 total, 3 up, 3 in 2024-09-16T14:37:07.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:06 smithi162 bash[23377]: cluster 2024-09-16T14:37:05.760837+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v154: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:07.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:06 smithi162 bash[23377]: cluster 2024-09-16T14:37:05.876338+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T14:37:07.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:06 smithi162 bash[23377]: audit 2024-09-16T14:37:06.277600+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:06 smithi019 bash[22501]: cluster 2024-09-16T14:37:05.760837+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v154: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:06 smithi019 bash[22501]: cluster 2024-09-16T14:37:05.876338+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T14:37:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:06 smithi019 bash[22501]: audit 2024-09-16T14:37:06.277600+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:07.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:06 smithi139 bash[23309]: cluster 2024-09-16T14:37:05.760837+0000 mgr.a (mgr.14150) 212 : cluster [DBG] pgmap v154: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:07.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:06 smithi139 bash[23309]: cluster 2024-09-16T14:37:05.876338+0000 mon.a (mon.0) 584 : cluster [DBG] osdmap e21: 3 total, 3 up, 3 in 2024-09-16T14:37:07.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:06 smithi139 bash[23309]: audit 2024-09-16T14:37:06.277600+0000 mon.a (mon.0) 585 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:07.687 INFO:teuthology.orchestra.run.smithi139.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: audit 2024-09-16T14:37:07.349014+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: audit 2024-09-16T14:37:07.356944+0000 mon.a (mon.0) 587 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: audit 2024-09-16T14:37:07.367853+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: cluster 2024-09-16T14:37:07.761392+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: cluster 2024-09-16T14:37:07.890250+0000 mon.a (mon.0) 589 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: audit 2024-09-16T14:37:08.150644+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:09 smithi139 bash[23309]: audit 2024-09-16T14:37:08.153501+0000 mon.a (mon.0) 591 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: audit 2024-09-16T14:37:07.349014+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: audit 2024-09-16T14:37:07.356944+0000 mon.a (mon.0) 587 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: audit 2024-09-16T14:37:07.367853+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: cluster 2024-09-16T14:37:07.761392+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: cluster 2024-09-16T14:37:07.890250+0000 mon.a (mon.0) 589 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: audit 2024-09-16T14:37:08.150644+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:09 smithi162 bash[23377]: audit 2024-09-16T14:37:08.153501+0000 mon.a (mon.0) 591 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: audit 2024-09-16T14:37:07.349014+0000 mon.a (mon.0) 586 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: audit 2024-09-16T14:37:07.356944+0000 mon.a (mon.0) 587 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: audit 2024-09-16T14:37:07.367853+0000 mon.a (mon.0) 588 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: cluster 2024-09-16T14:37:07.761392+0000 mgr.a (mgr.14150) 213 : cluster [DBG] pgmap v156: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: cluster 2024-09-16T14:37:07.890250+0000 mon.a (mon.0) 589 : cluster [DBG] mgrmap e15: a(active, since 4m), standbys: b 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: audit 2024-09-16T14:37:08.150644+0000 mon.a (mon.0) 590 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:09.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:09 smithi019 bash[22501]: audit 2024-09-16T14:37:08.153501+0000 mon.a (mon.0) 591 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:10.614 INFO:teuthology.orchestra.run.smithi139.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-16T14:37:10.765 INFO:teuthology.orchestra.run.smithi139.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-16T14:37:10.781 INFO:teuthology.orchestra.run.smithi139.stderr: stderr: 10+0 records in 2024-09-16T14:37:10.781 INFO:teuthology.orchestra.run.smithi139.stderr:10+0 records out 2024-09-16T14:37:10.782 INFO:teuthology.orchestra.run.smithi139.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0147925 s, 709 MB/s 2024-09-16T14:37:10.782 INFO:teuthology.orchestra.run.smithi139.stderr:--> Zapping successful for: 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.093828+0000 mon.a (mon.0) 592 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.095547+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.096190+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.096397+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.104367+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.104718+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.104975+0000 mon.a (mon.0) 598 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.105275+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: cluster 2024-09-16T14:37:09.761963+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:09.973732+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:10.020195+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:11.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:10.023753+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:10.024093+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.105 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:10 smithi139 bash[23309]: audit 2024-09-16T14:37:10.024391+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.093828+0000 mon.a (mon.0) 592 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.095547+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.096190+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.096397+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.104367+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.104718+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.104975+0000 mon.a (mon.0) 598 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.105275+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: cluster 2024-09-16T14:37:09.761963+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:11.185 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:09.973732+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:10.020195+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:10.023753+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:10.024093+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.186 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:10 smithi162 bash[23377]: audit 2024-09-16T14:37:10.024391+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.093828+0000 mon.a (mon.0) 592 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.095547+0000 mon.a (mon.0) 593 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.096190+0000 mon.a (mon.0) 594 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.096397+0000 mon.a (mon.0) 595 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.104367+0000 mon.a (mon.0) 596 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.104718+0000 mon.a (mon.0) 597 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.104975+0000 mon.a (mon.0) 598 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.105275+0000 mon.c (mon.1) 3 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: cluster 2024-09-16T14:37:09.761963+0000 mgr.a (mgr.14150) 214 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:09.973732+0000 mon.c (mon.1) 4 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:10.020195+0000 mon.a (mon.0) 599 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:10.023753+0000 mon.a (mon.0) 600 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:10.024093+0000 mon.a (mon.0) 601 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:37:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:10 smithi019 bash[22501]: audit 2024-09-16T14:37:10.024391+0000 mon.a (mon.0) 602 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-09-16T14:37:11.390 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi139:vg_nvme/lv_3 2024-09-16T14:37:12.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:11 smithi139 bash[23309]: audit 2024-09-16T14:37:10.024480+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:12.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:11 smithi139 bash[23309]: audit 2024-09-16T14:37:10.926163+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:12.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:11 smithi139 bash[23309]: cluster 2024-09-16T14:37:11.762585+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:12.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:11 smithi162 bash[23377]: audit 2024-09-16T14:37:10.024480+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:12.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:11 smithi162 bash[23377]: audit 2024-09-16T14:37:10.926163+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:12.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:11 smithi162 bash[23377]: cluster 2024-09-16T14:37:11.762585+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:11 smithi019 bash[22501]: audit 2024-09-16T14:37:10.024480+0000 mon.b (mon.2) 10 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-16T14:37:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:11 smithi019 bash[22501]: audit 2024-09-16T14:37:10.926163+0000 mon.b (mon.2) 11 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-16T14:37:12.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:11 smithi019 bash[22501]: cluster 2024-09-16T14:37:11.762585+0000 mgr.a (mgr.14150) 215 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:15.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:14 smithi139 bash[23309]: cluster 2024-09-16T14:37:13.763003+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-09-16T14:37:15.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:14 smithi162 bash[23377]: cluster 2024-09-16T14:37:13.763003+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-09-16T14:37:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:14 smithi019 bash[22501]: cluster 2024-09-16T14:37:13.763003+0000 mgr.a (mgr.14150) 216 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 6.7 KiB/s rd, 326 KiB/s wr, 21 op/s 2024-09-16T14:37:16.062 INFO:teuthology.orchestra.run.smithi139.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.b/config 2024-09-16T14:37:17.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:16 smithi139 bash[23309]: cluster 2024-09-16T14:37:15.763504+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T14:37:17.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:16 smithi139 bash[23309]: audit 2024-09-16T14:37:16.004189+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:16 smithi139 bash[23309]: audit 2024-09-16T14:37:16.012783+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:16 smithi139 bash[23309]: audit 2024-09-16T14:37:16.022624+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:16 smithi162 bash[23377]: cluster 2024-09-16T14:37:15.763504+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T14:37:17.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:16 smithi162 bash[23377]: audit 2024-09-16T14:37:16.004189+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:16 smithi162 bash[23377]: audit 2024-09-16T14:37:16.012783+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:16 smithi162 bash[23377]: audit 2024-09-16T14:37:16.022624+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:16 smithi019 bash[22501]: cluster 2024-09-16T14:37:15.763504+0000 mgr.a (mgr.14150) 217 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-16T14:37:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:16 smithi019 bash[22501]: audit 2024-09-16T14:37:16.004189+0000 mon.a (mon.0) 603 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:16 smithi019 bash[22501]: audit 2024-09-16T14:37:16.012783+0000 mon.a (mon.0) 604 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:16 smithi019 bash[22501]: audit 2024-09-16T14:37:16.022624+0000 mon.a (mon.0) 605 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:19.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:18 smithi139 bash[23309]: cluster 2024-09-16T14:37:17.764026+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T14:37:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:18 smithi162 bash[23377]: cluster 2024-09-16T14:37:17.764026+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T14:37:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:18 smithi019 bash[22501]: cluster 2024-09-16T14:37:17.764026+0000 mgr.a (mgr.14150) 218 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 3.4 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-16T14:37:20.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:19 smithi139 bash[23309]: audit 2024-09-16T14:37:18.860918+0000 mgr.a (mgr.14150) 219 : audit [DBG] from='client.24179 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:37:20.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:19 smithi139 bash[23309]: audit 2024-09-16T14:37:18.867241+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:37:20.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:19 smithi139 bash[23309]: audit 2024-09-16T14:37:18.873685+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:37:20.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:19 smithi139 bash[23309]: audit 2024-09-16T14:37:18.875473+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:20.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:19 smithi162 bash[23377]: audit 2024-09-16T14:37:18.860918+0000 mgr.a (mgr.14150) 219 : audit [DBG] from='client.24179 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:37:20.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:19 smithi162 bash[23377]: audit 2024-09-16T14:37:18.867241+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:37:20.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:19 smithi162 bash[23377]: audit 2024-09-16T14:37:18.873685+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:37:20.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:19 smithi162 bash[23377]: audit 2024-09-16T14:37:18.875473+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:19 smithi019 bash[22501]: audit 2024-09-16T14:37:18.860918+0000 mgr.a (mgr.14150) 219 : audit [DBG] from='client.24179 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi139:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:37:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:19 smithi019 bash[22501]: audit 2024-09-16T14:37:18.867241+0000 mon.a (mon.0) 606 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:37:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:19 smithi019 bash[22501]: audit 2024-09-16T14:37:18.873685+0000 mon.a (mon.0) 607 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:37:20.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:19 smithi019 bash[22501]: audit 2024-09-16T14:37:18.875473+0000 mon.a (mon.0) 608 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:21.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:20 smithi139 bash[23309]: cluster 2024-09-16T14:37:19.764594+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T14:37:21.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:20 smithi162 bash[23377]: cluster 2024-09-16T14:37:19.764594+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T14:37:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:20 smithi019 bash[22501]: cluster 2024-09-16T14:37:19.764594+0000 mgr.a (mgr.14150) 220 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.7 KiB/s rd, 131 KiB/s wr, 8 op/s 2024-09-16T14:37:23.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:22 smithi139 bash[23309]: cluster 2024-09-16T14:37:21.765120+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:23.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:22 smithi162 bash[23377]: cluster 2024-09-16T14:37:21.765120+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:23.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:22 smithi019 bash[22501]: cluster 2024-09-16T14:37:21.765120+0000 mgr.a (mgr.14150) 221 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:24.963 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:24 smithi139 bash[23309]: cluster 2024-09-16T14:37:23.765723+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:24.963 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:24 smithi139 bash[23309]: audit 2024-09-16T14:37:24.800370+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:24.963 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:24 smithi139 bash[23309]: audit 2024-09-16T14:37:24.809649+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:24.963 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:24 smithi139 bash[23309]: audit 2024-09-16T14:37:24.820985+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:24 smithi162 bash[23377]: cluster 2024-09-16T14:37:23.765723+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:25.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:24 smithi162 bash[23377]: audit 2024-09-16T14:37:24.800370+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:24 smithi162 bash[23377]: audit 2024-09-16T14:37:24.809649+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:24 smithi162 bash[23377]: audit 2024-09-16T14:37:24.820985+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:24 smithi019 bash[22501]: cluster 2024-09-16T14:37:23.765723+0000 mgr.a (mgr.14150) 222 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail; 2.2 KiB/s rd, 109 KiB/s wr, 7 op/s 2024-09-16T14:37:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:24 smithi019 bash[22501]: audit 2024-09-16T14:37:24.800370+0000 mon.a (mon.0) 609 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:24 smithi019 bash[22501]: audit 2024-09-16T14:37:24.809649+0000 mon.a (mon.0) 610 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:24 smithi019 bash[22501]: audit 2024-09-16T14:37:24.820985+0000 mon.a (mon.0) 611 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:27.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:26 smithi139 bash[23309]: cluster 2024-09-16T14:37:25.766228+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:27.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:26 smithi162 bash[23377]: cluster 2024-09-16T14:37:25.766228+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:26 smithi019 bash[22501]: cluster 2024-09-16T14:37:25.766228+0000 mgr.a (mgr.14150) 223 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.100966+0000 mon.a (mon.0) 612 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.101783+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.139:0/3434241687' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.109908+0000 mon.a (mon.0) 613 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]': finished 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: cluster 2024-09-16T14:37:27.110035+0000 mon.a (mon.0) 614 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.110384+0000 mon.a (mon.0) 615 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.556441+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.564376+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.574210+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:27 smithi162 bash[23377]: audit 2024-09-16T14:37:27.755504+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.139:0/1982927001' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:37:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.100966+0000 mon.a (mon.0) 612 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.101783+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.139:0/3434241687' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.109908+0000 mon.a (mon.0) 613 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]': finished 2024-09-16T14:37:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: cluster 2024-09-16T14:37:27.110035+0000 mon.a (mon.0) 614 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T14:37:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.110384+0000 mon.a (mon.0) 615 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:28.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.556441+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.564376+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.574210+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:27 smithi019 bash[22501]: audit 2024-09-16T14:37:27.755504+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.139:0/1982927001' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:37:28.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.100966+0000 mon.a (mon.0) 612 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.101783+0000 mon.b (mon.2) 12 : audit [INF] from='client.? 172.21.15.139:0/3434241687' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]: dispatch 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.109908+0000 mon.a (mon.0) 613 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "be19cbd9-d6a3-4c01-9d13-9e871a2b5537"}]': finished 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: cluster 2024-09-16T14:37:27.110035+0000 mon.a (mon.0) 614 : cluster [DBG] osdmap e22: 4 total, 3 up, 4 in 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.110384+0000 mon.a (mon.0) 615 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.556441+0000 mon.a (mon.0) 616 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.564376+0000 mon.a (mon.0) 617 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.574210+0000 mon.a (mon.0) 618 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:28.354 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:27 smithi139 bash[23309]: audit 2024-09-16T14:37:27.755504+0000 mon.b (mon.2) 13 : audit [DBG] from='client.? 172.21.15.139:0/1982927001' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:37:29.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:28 smithi162 bash[23377]: cluster 2024-09-16T14:37:27.766740+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:28 smithi019 bash[22501]: cluster 2024-09-16T14:37:27.766740+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:29.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:28 smithi139 bash[23309]: cluster 2024-09-16T14:37:27.766740+0000 mgr.a (mgr.14150) 224 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:31.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:30 smithi162 bash[23377]: cluster 2024-09-16T14:37:29.767300+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:30 smithi019 bash[22501]: cluster 2024-09-16T14:37:29.767300+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:31.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:30 smithi139 bash[23309]: cluster 2024-09-16T14:37:29.767300+0000 mgr.a (mgr.14150) 225 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:33.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:32 smithi139 bash[23309]: cluster 2024-09-16T14:37:31.767860+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:33.119 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:32 smithi019 bash[22501]: cluster 2024-09-16T14:37:31.767860+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:33.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:32 smithi162 bash[23377]: cluster 2024-09-16T14:37:31.767860+0000 mgr.a (mgr.14150) 226 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:34 smithi019 bash[22501]: cluster 2024-09-16T14:37:33.768453+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:35.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:34 smithi162 bash[23377]: cluster 2024-09-16T14:37:33.768453+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:35.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:34 smithi139 bash[23309]: cluster 2024-09-16T14:37:33.768453+0000 mgr.a (mgr.14150) 227 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:37.053 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:36 smithi139 bash[23309]: cluster 2024-09-16T14:37:35.769007+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:37.053 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:36 smithi139 bash[23309]: audit 2024-09-16T14:37:36.226493+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.053 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:36 smithi139 bash[23309]: audit 2024-09-16T14:37:36.235341+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.053 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:36 smithi139 bash[23309]: audit 2024-09-16T14:37:36.245744+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:36 smithi162 bash[23377]: cluster 2024-09-16T14:37:35.769007+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:36 smithi162 bash[23377]: audit 2024-09-16T14:37:36.226493+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:36 smithi162 bash[23377]: audit 2024-09-16T14:37:36.235341+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:36 smithi162 bash[23377]: audit 2024-09-16T14:37:36.245744+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:36 smithi019 bash[22501]: cluster 2024-09-16T14:37:35.769007+0000 mgr.a (mgr.14150) 228 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:36 smithi019 bash[22501]: audit 2024-09-16T14:37:36.226493+0000 mon.a (mon.0) 619 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:36 smithi019 bash[22501]: audit 2024-09-16T14:37:36.235341+0000 mon.a (mon.0) 620 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:36 smithi019 bash[22501]: audit 2024-09-16T14:37:36.245744+0000 mon.a (mon.0) 621 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:38.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:37 smithi162 bash[23377]: cephadm 2024-09-16T14:37:36.238246+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:37:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:37 smithi019 bash[22501]: cephadm 2024-09-16T14:37:36.238246+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:37:38.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:37 smithi139 bash[23309]: cephadm 2024-09-16T14:37:36.238246+0000 mgr.a (mgr.14150) 229 : cephadm [INF] Detected new or changed devices on smithi139 2024-09-16T14:37:39.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:38 smithi139 bash[23309]: cluster 2024-09-16T14:37:37.769536+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:38 smithi162 bash[23377]: cluster 2024-09-16T14:37:37.769536+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:39.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:38 smithi019 bash[22501]: cluster 2024-09-16T14:37:37.769536+0000 mgr.a (mgr.14150) 230 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:40.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:39 smithi139 bash[23309]: audit 2024-09-16T14:37:39.374889+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T14:37:40.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:39 smithi139 bash[23309]: audit 2024-09-16T14:37:39.376778+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:40.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:39 smithi139 bash[23309]: cephadm 2024-09-16T14:37:39.378261+0000 mgr.a (mgr.14150) 231 : cephadm [INF] Deploying daemon osd.3 on smithi139 2024-09-16T14:37:40.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:39 smithi139 bash[23309]: cluster 2024-09-16T14:37:39.770100+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:40.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:39 smithi162 bash[23377]: audit 2024-09-16T14:37:39.374889+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T14:37:40.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:39 smithi162 bash[23377]: audit 2024-09-16T14:37:39.376778+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:40.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:39 smithi162 bash[23377]: cephadm 2024-09-16T14:37:39.378261+0000 mgr.a (mgr.14150) 231 : cephadm [INF] Deploying daemon osd.3 on smithi139 2024-09-16T14:37:40.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:39 smithi162 bash[23377]: cluster 2024-09-16T14:37:39.770100+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:40.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:39 smithi019 bash[22501]: audit 2024-09-16T14:37:39.374889+0000 mon.a (mon.0) 622 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T14:37:40.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:39 smithi019 bash[22501]: audit 2024-09-16T14:37:39.376778+0000 mon.a (mon.0) 623 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:40.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:39 smithi019 bash[22501]: cephadm 2024-09-16T14:37:39.378261+0000 mgr.a (mgr.14150) 231 : cephadm [INF] Deploying daemon osd.3 on smithi139 2024-09-16T14:37:40.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:39 smithi019 bash[22501]: cluster 2024-09-16T14:37:39.770100+0000 mgr.a (mgr.14150) 232 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:42.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:42 smithi162 bash[23377]: cluster 2024-09-16T14:37:41.770644+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:43.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:42 smithi139 bash[23309]: cluster 2024-09-16T14:37:41.770644+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:43.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:42 smithi019 bash[22501]: cluster 2024-09-16T14:37:41.770644+0000 mgr.a (mgr.14150) 233 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:43.650 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:43.651 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:43.651 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:44.006 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:44.007 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:44.007 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:37:43 smithi139 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:37:45.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: cluster 2024-09-16T14:37:43.771216+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:45.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.918331+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:45.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.926466+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.926928+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:45.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.929607+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.935684+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:44 smithi139 bash[23309]: audit 2024-09-16T14:37:43.942747+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: cluster 2024-09-16T14:37:43.771216+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.918331+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.926466+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.926928+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.929607+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.935684+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:44 smithi162 bash[23377]: audit 2024-09-16T14:37:43.942747+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: cluster 2024-09-16T14:37:43.771216+0000 mgr.a (mgr.14150) 234 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.918331+0000 mon.a (mon.0) 624 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.926466+0000 mon.a (mon.0) 625 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.926928+0000 mon.a (mon.0) 626 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.929607+0000 mon.a (mon.0) 627 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.935684+0000 mon.a (mon.0) 628 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:45.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:44 smithi019 bash[22501]: audit 2024-09-16T14:37:43.942747+0000 mon.a (mon.0) 629 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:45 smithi139 bash[23309]: audit 2024-09-16T14:37:44.979491+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:45 smithi139 bash[23309]: audit 2024-09-16T14:37:44.984508+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:45 smithi139 bash[23309]: audit 2024-09-16T14:37:44.990977+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:45 smithi139 bash[23309]: cluster 2024-09-16T14:37:45.771731+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:46.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:45 smithi162 bash[23377]: audit 2024-09-16T14:37:44.979491+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:45 smithi162 bash[23377]: audit 2024-09-16T14:37:44.984508+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:45 smithi162 bash[23377]: audit 2024-09-16T14:37:44.990977+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.432 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:45 smithi162 bash[23377]: cluster 2024-09-16T14:37:45.771731+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:46.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:45 smithi019 bash[22501]: audit 2024-09-16T14:37:44.979491+0000 mon.a (mon.0) 630 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:45 smithi019 bash[22501]: audit 2024-09-16T14:37:44.984508+0000 mon.a (mon.0) 631 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:45 smithi019 bash[22501]: audit 2024-09-16T14:37:44.990977+0000 mon.a (mon.0) 632 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:46.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:45 smithi019 bash[22501]: cluster 2024-09-16T14:37:45.771731+0000 mgr.a (mgr.14150) 235 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:49.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:48 smithi139 bash[23309]: cluster 2024-09-16T14:37:47.772350+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:49.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:48 smithi139 bash[23309]: audit 2024-09-16T14:37:47.778538+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:48 smithi139 bash[23309]: audit 2024-09-16T14:37:47.786441+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:48 smithi139 bash[23309]: audit 2024-09-16T14:37:47.796299+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:48 smithi162 bash[23377]: cluster 2024-09-16T14:37:47.772350+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:49.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:48 smithi162 bash[23377]: audit 2024-09-16T14:37:47.778538+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:48 smithi162 bash[23377]: audit 2024-09-16T14:37:47.786441+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:48 smithi162 bash[23377]: audit 2024-09-16T14:37:47.796299+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:48 smithi019 bash[22501]: cluster 2024-09-16T14:37:47.772350+0000 mgr.a (mgr.14150) 236 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:48 smithi019 bash[22501]: audit 2024-09-16T14:37:47.778538+0000 mon.a (mon.0) 633 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:48 smithi019 bash[22501]: audit 2024-09-16T14:37:47.786441+0000 mon.a (mon.0) 634 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:48 smithi019 bash[22501]: audit 2024-09-16T14:37:47.796299+0000 mon.a (mon.0) 635 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:51.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:50 smithi139 bash[23309]: cluster 2024-09-16T14:37:49.772998+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:51.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:50 smithi139 bash[23309]: audit 2024-09-16T14:37:50.516003+0000 mon.a (mon.0) 636 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:51.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:50 smithi139 bash[23309]: audit 2024-09-16T14:37:50.517101+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:51.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:50 smithi162 bash[23377]: cluster 2024-09-16T14:37:49.772998+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:51.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:50 smithi162 bash[23377]: audit 2024-09-16T14:37:50.516003+0000 mon.a (mon.0) 636 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:51.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:50 smithi162 bash[23377]: audit 2024-09-16T14:37:50.517101+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:50 smithi019 bash[22501]: cluster 2024-09-16T14:37:49.772998+0000 mgr.a (mgr.14150) 237 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:50 smithi019 bash[22501]: audit 2024-09-16T14:37:50.516003+0000 mon.a (mon.0) 636 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:50 smithi019 bash[22501]: audit 2024-09-16T14:37:50.517101+0000 mon.b (mon.2) 14 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-16T14:37:52.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:51 smithi139 bash[23309]: audit 2024-09-16T14:37:50.785750+0000 mon.a (mon.0) 637 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T14:37:52.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:51 smithi139 bash[23309]: cluster 2024-09-16T14:37:50.785944+0000 mon.a (mon.0) 638 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T14:37:52.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:51 smithi139 bash[23309]: audit 2024-09-16T14:37:50.786560+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:52.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:51 smithi139 bash[23309]: audit 2024-09-16T14:37:50.789054+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:52.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:51 smithi139 bash[23309]: audit 2024-09-16T14:37:50.793752+0000 mon.a (mon.0) 640 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:52.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:51 smithi162 bash[23377]: audit 2024-09-16T14:37:50.785750+0000 mon.a (mon.0) 637 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T14:37:52.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:51 smithi162 bash[23377]: cluster 2024-09-16T14:37:50.785944+0000 mon.a (mon.0) 638 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T14:37:52.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:51 smithi162 bash[23377]: audit 2024-09-16T14:37:50.786560+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:52.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:51 smithi162 bash[23377]: audit 2024-09-16T14:37:50.789054+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:52.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:51 smithi162 bash[23377]: audit 2024-09-16T14:37:50.793752+0000 mon.a (mon.0) 640 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:51 smithi019 bash[22501]: audit 2024-09-16T14:37:50.785750+0000 mon.a (mon.0) 637 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-16T14:37:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:51 smithi019 bash[22501]: cluster 2024-09-16T14:37:50.785944+0000 mon.a (mon.0) 638 : cluster [DBG] osdmap e23: 4 total, 3 up, 4 in 2024-09-16T14:37:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:51 smithi019 bash[22501]: audit 2024-09-16T14:37:50.786560+0000 mon.a (mon.0) 639 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:51 smithi019 bash[22501]: audit 2024-09-16T14:37:50.789054+0000 mon.b (mon.2) 15 : audit [INF] from='osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:51 smithi019 bash[22501]: audit 2024-09-16T14:37:50.793752+0000 mon.a (mon.0) 640 : audit [INF] from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]: dispatch 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: cluster 2024-09-16T14:37:51.773588+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: audit 2024-09-16T14:37:51.796152+0000 mon.a (mon.0) 641 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: cluster 2024-09-16T14:37:51.796308+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: audit 2024-09-16T14:37:51.797010+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: audit 2024-09-16T14:37:51.808023+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:52 smithi139 bash[23309]: audit 2024-09-16T14:37:52.291177+0000 mon.a (mon.0) 645 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T14:37:53.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: cluster 2024-09-16T14:37:51.773588+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: audit 2024-09-16T14:37:51.796152+0000 mon.a (mon.0) 641 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: cluster 2024-09-16T14:37:51.796308+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T14:37:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: audit 2024-09-16T14:37:51.797010+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: audit 2024-09-16T14:37:51.808023+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:52 smithi162 bash[23377]: audit 2024-09-16T14:37:52.291177+0000 mon.a (mon.0) 645 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: cluster 2024-09-16T14:37:51.773588+0000 mgr.a (mgr.14150) 238 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: audit 2024-09-16T14:37:51.796152+0000 mon.a (mon.0) 641 : audit [INF] from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi139", "root=default"]}]': finished 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: cluster 2024-09-16T14:37:51.796308+0000 mon.a (mon.0) 642 : cluster [DBG] osdmap e24: 4 total, 3 up, 4 in 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: audit 2024-09-16T14:37:51.797010+0000 mon.a (mon.0) 643 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: audit 2024-09-16T14:37:51.808023+0000 mon.a (mon.0) 644 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:52 smithi019 bash[22501]: audit 2024-09-16T14:37:52.291177+0000 mon.a (mon.0) 645 : audit [INF] from='osd.3 ' entity='osd.3' 2024-09-16T14:37:53.738 INFO:teuthology.orchestra.run.smithi139.stdout:Created osd(s) 3 on host 'smithi139' 2024-09-16T14:37:53.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: cluster 2024-09-16T14:37:51.531361+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:53.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: cluster 2024-09-16T14:37:51.531497+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:53.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: cluster 2024-09-16T14:37:52.802520+0000 mon.a (mon.0) 646 : cluster [INF] osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439] boot 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: cluster 2024-09-16T14:37:52.802646+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:52.802980+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.718862+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.726652+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.727044+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.729485+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.736413+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.747946+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.750061+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.751671+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:53.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: audit 2024-09-16T14:37:53.762501+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:53.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:53 smithi019 bash[22501]: cluster 2024-09-16T14:37:53.802104+0000 mon.a (mon.0) 658 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T14:37:54.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: cluster 2024-09-16T14:37:51.531361+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:54.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: cluster 2024-09-16T14:37:51.531497+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:54.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: cluster 2024-09-16T14:37:52.802520+0000 mon.a (mon.0) 646 : cluster [INF] osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439] boot 2024-09-16T14:37:54.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: cluster 2024-09-16T14:37:52.802646+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T14:37:54.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:52.802980+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.718862+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.726652+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.727044+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.729485+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.736413+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.747946+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.750061+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.751671+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: audit 2024-09-16T14:37:53.762501+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:53 smithi139 bash[23309]: cluster 2024-09-16T14:37:53.802104+0000 mon.a (mon.0) 658 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: cluster 2024-09-16T14:37:51.531361+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: cluster 2024-09-16T14:37:51.531497+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: cluster 2024-09-16T14:37:52.802520+0000 mon.a (mon.0) 646 : cluster [INF] osd.3 [v2:172.21.15.139:6808/2629023439,v1:172.21.15.139:6809/2629023439] boot 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: cluster 2024-09-16T14:37:52.802646+0000 mon.a (mon.0) 647 : cluster [DBG] osdmap e25: 4 total, 4 up, 4 in 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:52.802980+0000 mon.a (mon.0) 648 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.718862+0000 mon.a (mon.0) 649 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.726652+0000 mon.a (mon.0) 650 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.727044+0000 mon.a (mon.0) 651 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.729485+0000 mon.a (mon.0) 652 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:37:54.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.736413+0000 mon.a (mon.0) 653 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.747946+0000 mon.a (mon.0) 654 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.750061+0000 mon.a (mon.0) 655 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.751671+0000 mon.a (mon.0) 656 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: audit 2024-09-16T14:37:53.762501+0000 mon.a (mon.0) 657 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:54.183 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:53 smithi162 bash[23377]: cluster 2024-09-16T14:37:53.802104+0000 mon.a (mon.0) 658 : cluster [DBG] osdmap e26: 4 total, 4 up, 4 in 2024-09-16T14:37:54.925 DEBUG:teuthology.orchestra.run.smithi139:osd.3> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.3.service 2024-09-16T14:37:54.928 INFO:tasks.cephadm:Deploying osd.4 on smithi162 with /dev/vg_nvme/lv_4... 2024-09-16T14:37:54.929 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-09-16T14:37:55.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:54 smithi139 bash[23309]: cephadm 2024-09-16T14:37:53.738202+0000 mgr.a (mgr.14150) 239 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 8120M 2024-09-16T14:37:55.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:54 smithi139 bash[23309]: cluster 2024-09-16T14:37:53.774053+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:55.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:54 smithi139 bash[23309]: cluster 2024-09-16T14:37:54.803861+0000 mon.a (mon.0) 659 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T14:37:55.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:54 smithi162 bash[23377]: cephadm 2024-09-16T14:37:53.738202+0000 mgr.a (mgr.14150) 239 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 8120M 2024-09-16T14:37:55.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:54 smithi162 bash[23377]: cluster 2024-09-16T14:37:53.774053+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:55.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:54 smithi162 bash[23377]: cluster 2024-09-16T14:37:54.803861+0000 mon.a (mon.0) 659 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T14:37:55.199 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:54 smithi019 bash[22501]: cephadm 2024-09-16T14:37:53.738202+0000 mgr.a (mgr.14150) 239 : cephadm [INF] Adjusting osd_memory_target on smithi139 to 8120M 2024-09-16T14:37:55.199 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:54 smithi019 bash[22501]: cluster 2024-09-16T14:37:53.774053+0000 mgr.a (mgr.14150) 240 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:55.199 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:54 smithi019 bash[22501]: cluster 2024-09-16T14:37:54.803861+0000 mon.a (mon.0) 659 : cluster [DBG] osdmap e27: 4 total, 4 up, 4 in 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: cluster 2024-09-16T14:37:55.774628+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: cluster 2024-09-16T14:37:55.824590+0000 mon.a (mon.0) 660 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.453596+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.462407+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.466978+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.474598+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.474997+0000 mon.a (mon.0) 665 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:57.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.477370+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:57.104 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:56 smithi139 bash[23309]: audit 2024-09-16T14:37:56.488001+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: cluster 2024-09-16T14:37:55.774628+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: cluster 2024-09-16T14:37:55.824590+0000 mon.a (mon.0) 660 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.453596+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.462407+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.466978+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.474598+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.474997+0000 mon.a (mon.0) 665 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.477370+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:56 smithi162 bash[23377]: audit 2024-09-16T14:37:56.488001+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: cluster 2024-09-16T14:37:55.774628+0000 mgr.a (mgr.14150) 241 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: cluster 2024-09-16T14:37:55.824590+0000 mon.a (mon.0) 660 : cluster [DBG] osdmap e28: 4 total, 4 up, 4 in 2024-09-16T14:37:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.453596+0000 mon.a (mon.0) 661 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.462407+0000 mon.a (mon.0) 662 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.466978+0000 mon.a (mon.0) 663 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.474598+0000 mon.a (mon.0) 664 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.474997+0000 mon.a (mon.0) 665 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.477370+0000 mon.a (mon.0) 666 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:56 smithi019 bash[22501]: audit 2024-09-16T14:37:56.488001+0000 mon.a (mon.0) 667 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:57 smithi139 bash[23309]: cluster 2024-09-16T14:37:56.481854+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:58.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:57 smithi139 bash[23309]: cluster 2024-09-16T14:37:56.830122+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T14:37:58.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:57 smithi139 bash[23309]: cluster 2024-09-16T14:37:57.469871+0000 mon.a (mon.0) 669 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:37:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:57 smithi162 bash[23377]: cluster 2024-09-16T14:37:56.481854+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:58.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:57 smithi162 bash[23377]: cluster 2024-09-16T14:37:56.830122+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T14:37:58.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:57 smithi162 bash[23377]: cluster 2024-09-16T14:37:57.469871+0000 mon.a (mon.0) 669 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:37:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:57 smithi019 bash[22501]: cluster 2024-09-16T14:37:56.481854+0000 mgr.a (mgr.14150) 242 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:37:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:57 smithi019 bash[22501]: cluster 2024-09-16T14:37:56.830122+0000 mon.a (mon.0) 668 : cluster [DBG] osdmap e29: 4 total, 4 up, 4 in 2024-09-16T14:37:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:57 smithi019 bash[22501]: cluster 2024-09-16T14:37:57.469871+0000 mon.a (mon.0) 669 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:37:58.585 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:37:59.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.424530+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.433151+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.438143+0000 mon.a (mon.0) 672 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.443473+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.449039+0000 mon.a (mon.0) 674 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.450985+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: cluster 2024-09-16T14:37:58.454244+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 124 KiB/s, 0 objects/s recovering 2024-09-16T14:37:59.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:37:59 smithi162 bash[23377]: audit 2024-09-16T14:37:58.461211+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.424530+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.433151+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.438143+0000 mon.a (mon.0) 672 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.443473+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.449039+0000 mon.a (mon.0) 674 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.450985+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:59.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: cluster 2024-09-16T14:37:58.454244+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 124 KiB/s, 0 objects/s recovering 2024-09-16T14:37:59.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:37:59 smithi019 bash[22501]: audit 2024-09-16T14:37:58.461211+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.424530+0000 mon.a (mon.0) 670 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.433151+0000 mon.a (mon.0) 671 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.438143+0000 mon.a (mon.0) 672 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.443473+0000 mon.a (mon.0) 673 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.449039+0000 mon.a (mon.0) 674 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.450985+0000 mon.a (mon.0) 675 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: cluster 2024-09-16T14:37:58.454244+0000 mgr.a (mgr.14150) 243 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 124 KiB/s, 0 objects/s recovering 2024-09-16T14:37:59.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:37:59 smithi139 bash[23309]: audit 2024-09-16T14:37:58.461211+0000 mon.a (mon.0) 676 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:00.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:00 smithi162 bash[23377]: cluster 2024-09-16T14:37:59.439621+0000 mon.a (mon.0) 677 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:00.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:00 smithi162 bash[23377]: cluster 2024-09-16T14:37:59.439671+0000 mon.a (mon.0) 678 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:00.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:00 smithi019 bash[22501]: cluster 2024-09-16T14:37:59.439621+0000 mon.a (mon.0) 677 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:00.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:00 smithi019 bash[22501]: cluster 2024-09-16T14:37:59.439671+0000 mon.a (mon.0) 678 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:00.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:00 smithi139 bash[23309]: cluster 2024-09-16T14:37:59.439621+0000 mon.a (mon.0) 677 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:00.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:00 smithi139 bash[23309]: cluster 2024-09-16T14:37:59.439671+0000 mon.a (mon.0) 678 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:01.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:01 smithi019 bash[22501]: cluster 2024-09-16T14:38:00.454881+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-16T14:38:01.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:01 smithi139 bash[23309]: cluster 2024-09-16T14:38:00.454881+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-16T14:38:01.929 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:01 smithi162 bash[23377]: cluster 2024-09-16T14:38:00.454881+0000 mgr.a (mgr.14150) 244 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-16T14:38:01.965 INFO:teuthology.orchestra.run.smithi162.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-09-16T14:38:02.137 INFO:teuthology.orchestra.run.smithi162.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-09-16T14:38:02.153 INFO:teuthology.orchestra.run.smithi162.stderr: stderr: 10+0 records in 2024-09-16T14:38:02.154 INFO:teuthology.orchestra.run.smithi162.stderr:10+0 records out 2024-09-16T14:38:02.154 INFO:teuthology.orchestra.run.smithi162.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0143201 s, 732 MB/s 2024-09-16T14:38:02.154 INFO:teuthology.orchestra.run.smithi162.stderr:--> Zapping successful for: 2024-09-16T14:38:02.954 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi162:vg_nvme/lv_4 2024-09-16T14:38:03.823 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:03 smithi162 bash[23377]: cluster 2024-09-16T14:38:02.455485+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-16T14:38:03.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:03 smithi139 bash[23309]: cluster 2024-09-16T14:38:02.455485+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-16T14:38:03.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:03 smithi019 bash[22501]: cluster 2024-09-16T14:38:02.455485+0000 mgr.a (mgr.14150) 245 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 86 KiB/s, 0 objects/s recovering 2024-09-16T14:38:05.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:05 smithi139 bash[23309]: cluster 2024-09-16T14:38:04.456065+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T14:38:05.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:05 smithi139 bash[23309]: audit 2024-09-16T14:38:05.197008+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:05 smithi139 bash[23309]: audit 2024-09-16T14:38:05.202827+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:05 smithi139 bash[23309]: audit 2024-09-16T14:38:05.209496+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:05 smithi162 bash[23377]: cluster 2024-09-16T14:38:04.456065+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T14:38:05.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:05 smithi162 bash[23377]: audit 2024-09-16T14:38:05.197008+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:05 smithi162 bash[23377]: audit 2024-09-16T14:38:05.202827+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:05 smithi162 bash[23377]: audit 2024-09-16T14:38:05.209496+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:05 smithi019 bash[22501]: cluster 2024-09-16T14:38:04.456065+0000 mgr.a (mgr.14150) 246 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-16T14:38:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:05 smithi019 bash[22501]: audit 2024-09-16T14:38:05.197008+0000 mon.a (mon.0) 679 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:05 smithi019 bash[22501]: audit 2024-09-16T14:38:05.202827+0000 mon.a (mon.0) 680 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:05.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:05 smithi019 bash[22501]: audit 2024-09-16T14:38:05.209496+0000 mon.a (mon.0) 681 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:07.094 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:38:07.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:07 smithi139 bash[23309]: cluster 2024-09-16T14:38:06.456587+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:38:07.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:07 smithi162 bash[23377]: cluster 2024-09-16T14:38:06.456587+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:38:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:07 smithi019 bash[22501]: cluster 2024-09-16T14:38:06.456587+0000 mgr.a (mgr.14150) 247 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:38:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:08 smithi162 bash[23377]: audit 2024-09-16T14:38:07.958828+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:08 smithi162 bash[23377]: audit 2024-09-16T14:38:07.966719+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:08 smithi162 bash[23377]: audit 2024-09-16T14:38:07.976410+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:08 smithi162 bash[23377]: cluster 2024-09-16T14:38:08.457181+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:38:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:08 smithi019 bash[22501]: audit 2024-09-16T14:38:07.958828+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:08 smithi019 bash[22501]: audit 2024-09-16T14:38:07.966719+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:08 smithi019 bash[22501]: audit 2024-09-16T14:38:07.976410+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:08 smithi019 bash[22501]: cluster 2024-09-16T14:38:08.457181+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:38:09.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:08 smithi139 bash[23309]: audit 2024-09-16T14:38:07.958828+0000 mon.a (mon.0) 682 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:08 smithi139 bash[23309]: audit 2024-09-16T14:38:07.966719+0000 mon.a (mon.0) 683 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:08 smithi139 bash[23309]: audit 2024-09-16T14:38:07.976410+0000 mon.a (mon.0) 684 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:09.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:08 smithi139 bash[23309]: cluster 2024-09-16T14:38:08.457181+0000 mgr.a (mgr.14150) 248 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:38:10.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:10 smithi139 bash[23309]: audit 2024-09-16T14:38:10.040943+0000 mon.a (mon.0) 685 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:38:10.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:10 smithi139 bash[23309]: audit 2024-09-16T14:38:10.047111+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:38:10.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:10 smithi139 bash[23309]: audit 2024-09-16T14:38:10.048731+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:10.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:10 smithi162 bash[23377]: audit 2024-09-16T14:38:10.040943+0000 mon.a (mon.0) 685 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:38:10.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:10 smithi162 bash[23377]: audit 2024-09-16T14:38:10.047111+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:38:10.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:10 smithi162 bash[23377]: audit 2024-09-16T14:38:10.048731+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:10.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:10 smithi019 bash[22501]: audit 2024-09-16T14:38:10.040943+0000 mon.a (mon.0) 685 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:38:10.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:10 smithi019 bash[22501]: audit 2024-09-16T14:38:10.047111+0000 mon.a (mon.0) 686 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:38:10.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:10 smithi019 bash[22501]: audit 2024-09-16T14:38:10.048731+0000 mon.a (mon.0) 687 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:11.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:11 smithi162 bash[23377]: audit 2024-09-16T14:38:10.034208+0000 mgr.a (mgr.14150) 249 : audit [DBG] from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:38:11.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:11 smithi162 bash[23377]: cluster 2024-09-16T14:38:10.457748+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:11.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:11 smithi019 bash[22501]: audit 2024-09-16T14:38:10.034208+0000 mgr.a (mgr.14150) 249 : audit [DBG] from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:38:11.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:11 smithi019 bash[22501]: cluster 2024-09-16T14:38:10.457748+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:11.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:11 smithi139 bash[23309]: audit 2024-09-16T14:38:10.034208+0000 mgr.a (mgr.14150) 249 : audit [DBG] from='client.24187 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:38:11.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:11 smithi139 bash[23309]: cluster 2024-09-16T14:38:10.457748+0000 mgr.a (mgr.14150) 250 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:13.702 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:13 smithi019 bash[22501]: cluster 2024-09-16T14:38:12.458278+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:13.704 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:13 smithi139 bash[23309]: cluster 2024-09-16T14:38:12.458278+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:13.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:13 smithi162 bash[23377]: cluster 2024-09-16T14:38:12.458278+0000 mgr.a (mgr.14150) 251 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:15.771 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:15 smithi162 bash[23377]: cluster 2024-09-16T14:38:14.458813+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:15.791 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:15 smithi139 bash[23309]: cluster 2024-09-16T14:38:14.458813+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:15.794 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:15 smithi019 bash[22501]: cluster 2024-09-16T14:38:14.458813+0000 mgr.a (mgr.14150) 252 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:17.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:17 smithi162 bash[23377]: cluster 2024-09-16T14:38:16.459360+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:17.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:17 smithi162 bash[23377]: audit 2024-09-16T14:38:17.028985+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:17 smithi162 bash[23377]: audit 2024-09-16T14:38:17.037665+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:17 smithi162 bash[23377]: audit 2024-09-16T14:38:17.047310+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:17 smithi139 bash[23309]: cluster 2024-09-16T14:38:16.459360+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:17.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:17 smithi139 bash[23309]: audit 2024-09-16T14:38:17.028985+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:17 smithi139 bash[23309]: audit 2024-09-16T14:38:17.037665+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:17 smithi139 bash[23309]: audit 2024-09-16T14:38:17.047310+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:17 smithi019 bash[22501]: cluster 2024-09-16T14:38:16.459360+0000 mgr.a (mgr.14150) 253 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:17.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:17 smithi019 bash[22501]: audit 2024-09-16T14:38:17.028985+0000 mon.a (mon.0) 688 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:17 smithi019 bash[22501]: audit 2024-09-16T14:38:17.037665+0000 mon.a (mon.0) 689 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:17.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:17 smithi019 bash[22501]: audit 2024-09-16T14:38:17.047310+0000 mon.a (mon.0) 690 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:18.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:18 smithi139 bash[23309]: audit 2024-09-16T14:38:18.042160+0000 mon.a (mon.0) 691 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:18 smithi139 bash[23309]: audit 2024-09-16T14:38:18.043833+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.162:0/1920208662' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:18 smithi139 bash[23309]: audit 2024-09-16T14:38:18.050384+0000 mon.a (mon.0) 692 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]': finished 2024-09-16T14:38:18.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:18 smithi139 bash[23309]: cluster 2024-09-16T14:38:18.050504+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T14:38:18.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:18 smithi139 bash[23309]: audit 2024-09-16T14:38:18.050812+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:18.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:18 smithi162 bash[23377]: audit 2024-09-16T14:38:18.042160+0000 mon.a (mon.0) 691 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:18 smithi162 bash[23377]: audit 2024-09-16T14:38:18.043833+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.162:0/1920208662' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:18 smithi162 bash[23377]: audit 2024-09-16T14:38:18.050384+0000 mon.a (mon.0) 692 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]': finished 2024-09-16T14:38:18.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:18 smithi162 bash[23377]: cluster 2024-09-16T14:38:18.050504+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T14:38:18.932 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:18 smithi162 bash[23377]: audit 2024-09-16T14:38:18.050812+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:18 smithi019 bash[22501]: audit 2024-09-16T14:38:18.042160+0000 mon.a (mon.0) 691 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:18 smithi019 bash[22501]: audit 2024-09-16T14:38:18.043833+0000 mon.c (mon.1) 5 : audit [INF] from='client.? 172.21.15.162:0/1920208662' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]: dispatch 2024-09-16T14:38:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:18 smithi019 bash[22501]: audit 2024-09-16T14:38:18.050384+0000 mon.a (mon.0) 692 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b76bffe1-02a4-4de7-86f8-db74edee8aac"}]': finished 2024-09-16T14:38:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:18 smithi019 bash[22501]: cluster 2024-09-16T14:38:18.050504+0000 mon.a (mon.0) 693 : cluster [DBG] osdmap e30: 5 total, 4 up, 5 in 2024-09-16T14:38:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:18 smithi019 bash[22501]: audit 2024-09-16T14:38:18.050812+0000 mon.a (mon.0) 694 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:19.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:19 smithi139 bash[23309]: cluster 2024-09-16T14:38:18.459875+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:19.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:19 smithi139 bash[23309]: audit 2024-09-16T14:38:18.681588+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.162:0/3439992366' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:38:19.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:19 smithi162 bash[23377]: cluster 2024-09-16T14:38:18.459875+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:19.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:19 smithi162 bash[23377]: audit 2024-09-16T14:38:18.681588+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.162:0/3439992366' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:38:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:19 smithi019 bash[22501]: cluster 2024-09-16T14:38:18.459875+0000 mgr.a (mgr.14150) 254 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:19 smithi019 bash[22501]: audit 2024-09-16T14:38:18.681588+0000 mon.c (mon.1) 6 : audit [DBG] from='client.? 172.21.15.162:0/3439992366' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:38:21.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:21 smithi139 bash[23309]: cluster 2024-09-16T14:38:20.460403+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:21.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:21 smithi162 bash[23377]: cluster 2024-09-16T14:38:20.460403+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:21.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:21 smithi019 bash[22501]: cluster 2024-09-16T14:38:20.460403+0000 mgr.a (mgr.14150) 255 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:23.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:23 smithi162 bash[23377]: cluster 2024-09-16T14:38:22.460944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:23.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:23 smithi139 bash[23309]: cluster 2024-09-16T14:38:22.460944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:23.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:23 smithi019 bash[22501]: cluster 2024-09-16T14:38:22.460944+0000 mgr.a (mgr.14150) 256 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:25.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:25 smithi019 bash[22501]: cluster 2024-09-16T14:38:24.461495+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:25.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:25 smithi019 bash[22501]: audit 2024-09-16T14:38:25.419427+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:25 smithi019 bash[22501]: audit 2024-09-16T14:38:25.427222+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:25 smithi019 bash[22501]: audit 2024-09-16T14:38:25.438266+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:25 smithi139 bash[23309]: cluster 2024-09-16T14:38:24.461495+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:25.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:25 smithi139 bash[23309]: audit 2024-09-16T14:38:25.419427+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:25 smithi139 bash[23309]: audit 2024-09-16T14:38:25.427222+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:25 smithi139 bash[23309]: audit 2024-09-16T14:38:25.438266+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:25 smithi162 bash[23377]: cluster 2024-09-16T14:38:24.461495+0000 mgr.a (mgr.14150) 257 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:25.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:25 smithi162 bash[23377]: audit 2024-09-16T14:38:25.419427+0000 mon.a (mon.0) 695 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:25 smithi162 bash[23377]: audit 2024-09-16T14:38:25.427222+0000 mon.a (mon.0) 696 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:25.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:25 smithi162 bash[23377]: audit 2024-09-16T14:38:25.438266+0000 mon.a (mon.0) 697 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:27.826 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:27 smithi162 bash[23377]: cluster 2024-09-16T14:38:26.461987+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:27.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:27 smithi139 bash[23309]: cluster 2024-09-16T14:38:26.461987+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:27.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:27 smithi019 bash[22501]: cluster 2024-09-16T14:38:26.461987+0000 mgr.a (mgr.14150) 258 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:29.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:29 smithi162 bash[23377]: audit 2024-09-16T14:38:28.162293+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:29 smithi162 bash[23377]: audit 2024-09-16T14:38:28.170344+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:29 smithi162 bash[23377]: cephadm 2024-09-16T14:38:28.173153+0000 mgr.a (mgr.14150) 259 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:38:29.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:29 smithi162 bash[23377]: audit 2024-09-16T14:38:28.180511+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:29 smithi162 bash[23377]: cluster 2024-09-16T14:38:28.462539+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:29.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:29 smithi019 bash[22501]: audit 2024-09-16T14:38:28.162293+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:29 smithi019 bash[22501]: audit 2024-09-16T14:38:28.170344+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:29 smithi019 bash[22501]: cephadm 2024-09-16T14:38:28.173153+0000 mgr.a (mgr.14150) 259 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:38:29.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:29 smithi019 bash[22501]: audit 2024-09-16T14:38:28.180511+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:29 smithi019 bash[22501]: cluster 2024-09-16T14:38:28.462539+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:29.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:29 smithi139 bash[23309]: audit 2024-09-16T14:38:28.162293+0000 mon.a (mon.0) 698 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:29 smithi139 bash[23309]: audit 2024-09-16T14:38:28.170344+0000 mon.a (mon.0) 699 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:29 smithi139 bash[23309]: cephadm 2024-09-16T14:38:28.173153+0000 mgr.a (mgr.14150) 259 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:38:29.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:29 smithi139 bash[23309]: audit 2024-09-16T14:38:28.180511+0000 mon.a (mon.0) 700 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:29.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:29 smithi139 bash[23309]: cluster 2024-09-16T14:38:28.462539+0000 mgr.a (mgr.14150) 260 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:30.476 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:30 smithi162 bash[23377]: audit 2024-09-16T14:38:30.069067+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T14:38:30.476 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:30 smithi162 bash[23377]: audit 2024-09-16T14:38:30.071156+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:30.478 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:30 smithi019 bash[22501]: audit 2024-09-16T14:38:30.069067+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T14:38:30.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:30 smithi019 bash[22501]: audit 2024-09-16T14:38:30.071156+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:30.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:30 smithi139 bash[23309]: audit 2024-09-16T14:38:30.069067+0000 mon.a (mon.0) 701 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-16T14:38:30.603 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:30 smithi139 bash[23309]: audit 2024-09-16T14:38:30.071156+0000 mon.a (mon.0) 702 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:31.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:31 smithi019 bash[22501]: cephadm 2024-09-16T14:38:30.072914+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Deploying daemon osd.4 on smithi162 2024-09-16T14:38:31.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:31 smithi019 bash[22501]: cluster 2024-09-16T14:38:30.463076+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:31.518 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:31 smithi162 bash[23377]: cephadm 2024-09-16T14:38:30.072914+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Deploying daemon osd.4 on smithi162 2024-09-16T14:38:31.519 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:31 smithi162 bash[23377]: cluster 2024-09-16T14:38:30.463076+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:31.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:31 smithi139 bash[23309]: cephadm 2024-09-16T14:38:30.072914+0000 mgr.a (mgr.14150) 261 : cephadm [INF] Deploying daemon osd.4 on smithi162 2024-09-16T14:38:31.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:31 smithi139 bash[23309]: cluster 2024-09-16T14:38:30.463076+0000 mgr.a (mgr.14150) 262 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:33.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:33 smithi139 bash[23309]: cluster 2024-09-16T14:38:32.463584+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:33.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:33 smithi162 bash[23377]: cluster 2024-09-16T14:38:32.463584+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:33.765 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:33 smithi019 bash[22501]: cluster 2024-09-16T14:38:32.463584+0000 mgr.a (mgr.14150) 263 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:34.284 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:34 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:38:34.621 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:34 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:38:35.719 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: cluster 2024-09-16T14:38:34.464135+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.541261+0000 mon.a (mon.0) 703 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.549182+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.549634+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.551823+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.557593+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.720 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:35 smithi139 bash[23309]: audit 2024-09-16T14:38:34.563381+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.809 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: cluster 2024-09-16T14:38:34.464135+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:35.809 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.541261+0000 mon.a (mon.0) 703 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:35.809 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.549182+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.809 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.549634+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:35.810 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.551823+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:35.810 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.557593+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.810 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:35 smithi019 bash[22501]: audit 2024-09-16T14:38:34.563381+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.831 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: cluster 2024-09-16T14:38:34.464135+0000 mgr.a (mgr.14150) 264 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:35.831 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.541261+0000 mon.a (mon.0) 703 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:35.832 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.549182+0000 mon.a (mon.0) 704 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.832 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.549634+0000 mon.a (mon.0) 705 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:35.832 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.551823+0000 mon.a (mon.0) 706 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:35.832 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.557593+0000 mon.a (mon.0) 707 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:35.832 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:35 smithi162 bash[23377]: audit 2024-09-16T14:38:34.563381+0000 mon.a (mon.0) 708 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:37 smithi162 bash[23377]: cluster 2024-09-16T14:38:36.464691+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:37.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:37 smithi162 bash[23377]: audit 2024-09-16T14:38:37.255616+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:37 smithi162 bash[23377]: audit 2024-09-16T14:38:37.264164+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:37 smithi162 bash[23377]: audit 2024-09-16T14:38:37.273764+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:37 smithi139 bash[23309]: cluster 2024-09-16T14:38:36.464691+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:37.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:37 smithi139 bash[23309]: audit 2024-09-16T14:38:37.255616+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:37 smithi139 bash[23309]: audit 2024-09-16T14:38:37.264164+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:37 smithi139 bash[23309]: audit 2024-09-16T14:38:37.273764+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:37 smithi019 bash[22501]: cluster 2024-09-16T14:38:36.464691+0000 mgr.a (mgr.14150) 265 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:37.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:37 smithi019 bash[22501]: audit 2024-09-16T14:38:37.255616+0000 mon.a (mon.0) 709 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:37 smithi019 bash[22501]: audit 2024-09-16T14:38:37.264164+0000 mon.a (mon.0) 710 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:37.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:37 smithi019 bash[22501]: audit 2024-09-16T14:38:37.273764+0000 mon.a (mon.0) 711 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:39.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:39 smithi139 bash[23309]: cluster 2024-09-16T14:38:38.465245+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:39.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:39 smithi162 bash[23377]: cluster 2024-09-16T14:38:38.465245+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:39.978 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:39 smithi019 bash[22501]: cluster 2024-09-16T14:38:38.465245+0000 mgr.a (mgr.14150) 266 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:41.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:41 smithi162 bash[23377]: cluster 2024-09-16T14:38:40.465796+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:41.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:41 smithi162 bash[23377]: audit 2024-09-16T14:38:40.940607+0000 mon.a (mon.0) 712 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:41.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:41 smithi162 bash[23377]: audit 2024-09-16T14:38:40.942546+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:41.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:41 smithi139 bash[23309]: cluster 2024-09-16T14:38:40.465796+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:41.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:41 smithi139 bash[23309]: audit 2024-09-16T14:38:40.940607+0000 mon.a (mon.0) 712 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:41.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:41 smithi139 bash[23309]: audit 2024-09-16T14:38:40.942546+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:41 smithi019 bash[22501]: cluster 2024-09-16T14:38:40.465796+0000 mgr.a (mgr.14150) 267 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:41 smithi019 bash[22501]: audit 2024-09-16T14:38:40.940607+0000 mon.a (mon.0) 712 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:41 smithi019 bash[22501]: audit 2024-09-16T14:38:40.942546+0000 mon.c (mon.1) 7 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-16T14:38:42.852 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:42 smithi162 bash[23377]: audit 2024-09-16T14:38:41.540967+0000 mon.a (mon.0) 713 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T14:38:42.852 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:42 smithi162 bash[23377]: cluster 2024-09-16T14:38:41.541104+0000 mon.a (mon.0) 714 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T14:38:42.852 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:42 smithi162 bash[23377]: audit 2024-09-16T14:38:41.541723+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:42.852 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:42 smithi162 bash[23377]: audit 2024-09-16T14:38:41.545046+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:42.852 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:42 smithi162 bash[23377]: audit 2024-09-16T14:38:41.549919+0000 mon.a (mon.0) 716 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:42.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:42 smithi139 bash[23309]: audit 2024-09-16T14:38:41.540967+0000 mon.a (mon.0) 713 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T14:38:42.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:42 smithi139 bash[23309]: cluster 2024-09-16T14:38:41.541104+0000 mon.a (mon.0) 714 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T14:38:42.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:42 smithi139 bash[23309]: audit 2024-09-16T14:38:41.541723+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:42.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:42 smithi139 bash[23309]: audit 2024-09-16T14:38:41.545046+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:42.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:42 smithi139 bash[23309]: audit 2024-09-16T14:38:41.549919+0000 mon.a (mon.0) 716 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:42 smithi019 bash[22501]: audit 2024-09-16T14:38:41.540967+0000 mon.a (mon.0) 713 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-16T14:38:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:42 smithi019 bash[22501]: cluster 2024-09-16T14:38:41.541104+0000 mon.a (mon.0) 714 : cluster [DBG] osdmap e31: 5 total, 4 up, 5 in 2024-09-16T14:38:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:42 smithi019 bash[22501]: audit 2024-09-16T14:38:41.541723+0000 mon.a (mon.0) 715 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:42 smithi019 bash[22501]: audit 2024-09-16T14:38:41.545046+0000 mon.c (mon.1) 8 : audit [INF] from='osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:42 smithi019 bash[22501]: audit 2024-09-16T14:38:41.549919+0000 mon.a (mon.0) 716 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:38:43.574 INFO:teuthology.orchestra.run.smithi162.stdout:Created osd(s) 4 on host 'smithi162' 2024-09-16T14:38:43.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: cluster 2024-09-16T14:38:42.466412+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:43.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: audit 2024-09-16T14:38:42.563700+0000 mon.a (mon.0) 717 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:38:43.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: cluster 2024-09-16T14:38:42.563846+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T14:38:43.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: audit 2024-09-16T14:38:42.564245+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: audit 2024-09-16T14:38:42.569268+0000 mon.a (mon.0) 720 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:43 smithi139 bash[23309]: audit 2024-09-16T14:38:43.546632+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: cluster 2024-09-16T14:38:42.466412+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: audit 2024-09-16T14:38:42.563700+0000 mon.a (mon.0) 717 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: cluster 2024-09-16T14:38:42.563846+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: audit 2024-09-16T14:38:42.564245+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: audit 2024-09-16T14:38:42.569268+0000 mon.a (mon.0) 720 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.857 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:43 smithi162 bash[23377]: audit 2024-09-16T14:38:43.546632+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: cluster 2024-09-16T14:38:42.466412+0000 mgr.a (mgr.14150) 268 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: audit 2024-09-16T14:38:42.563700+0000 mon.a (mon.0) 717 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: cluster 2024-09-16T14:38:42.563846+0000 mon.a (mon.0) 718 : cluster [DBG] osdmap e32: 5 total, 4 up, 5 in 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: audit 2024-09-16T14:38:42.564245+0000 mon.a (mon.0) 719 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: audit 2024-09-16T14:38:42.569268+0000 mon.a (mon.0) 720 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:43.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:43 smithi019 bash[22501]: audit 2024-09-16T14:38:43.546632+0000 mon.a (mon.0) 721 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:44.371 DEBUG:teuthology.orchestra.run.smithi162:osd.4> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.4.service 2024-09-16T14:38:44.373 INFO:tasks.cephadm:Deploying osd.5 on smithi162 with /dev/vg_nvme/lv_3... 2024-09-16T14:38:44.374 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-09-16T14:38:44.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: cluster 2024-09-16T14:38:41.964368+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: cluster 2024-09-16T14:38:41.964460+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.554840+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.555333+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: cephadm 2024-09-16T14:38:43.558844+0000 mgr.a (mgr.14150) 269 : cephadm [INF] Adjusting osd_memory_target on smithi162 to 20337M 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: cluster 2024-09-16T14:38:43.564213+0000 mon.a (mon.0) 724 : cluster [INF] osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052] boot 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: cluster 2024-09-16T14:38:43.564359+0000 mon.a (mon.0) 725 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.565487+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.572942+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.581121+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.583489+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:44.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.585154+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:44.683 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:44 smithi162 bash[23377]: audit 2024-09-16T14:38:43.594682+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: cluster 2024-09-16T14:38:41.964368+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: cluster 2024-09-16T14:38:41.964460+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.554840+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.555333+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: cephadm 2024-09-16T14:38:43.558844+0000 mgr.a (mgr.14150) 269 : cephadm [INF] Adjusting osd_memory_target on smithi162 to 20337M 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: cluster 2024-09-16T14:38:43.564213+0000 mon.a (mon.0) 724 : cluster [INF] osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052] boot 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: cluster 2024-09-16T14:38:43.564359+0000 mon.a (mon.0) 725 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.565487+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.572942+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.581121+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.583489+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:44.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.585154+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:44.854 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:44 smithi139 bash[23309]: audit 2024-09-16T14:38:43.594682+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: cluster 2024-09-16T14:38:41.964368+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:38:44.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: cluster 2024-09-16T14:38:41.964460+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.554840+0000 mon.a (mon.0) 722 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.555333+0000 mon.a (mon.0) 723 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: cephadm 2024-09-16T14:38:43.558844+0000 mgr.a (mgr.14150) 269 : cephadm [INF] Adjusting osd_memory_target on smithi162 to 20337M 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: cluster 2024-09-16T14:38:43.564213+0000 mon.a (mon.0) 724 : cluster [INF] osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052] boot 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: cluster 2024-09-16T14:38:43.564359+0000 mon.a (mon.0) 725 : cluster [DBG] osdmap e33: 5 total, 5 up, 5 in 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.565487+0000 mon.a (mon.0) 726 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:38:44.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.572942+0000 mon.a (mon.0) 727 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.581121+0000 mon.a (mon.0) 728 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:44.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.583489+0000 mon.a (mon.0) 729 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:44.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.585154+0000 mon.a (mon.0) 730 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:44.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:44 smithi019 bash[22501]: audit 2024-09-16T14:38:43.594682+0000 mon.a (mon.0) 731 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:45.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:45 smithi162 bash[23377]: cluster 2024-09-16T14:38:44.466978+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v217: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:45.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:45 smithi162 bash[23377]: cluster 2024-09-16T14:38:44.577602+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T14:38:45.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:45 smithi139 bash[23309]: cluster 2024-09-16T14:38:44.466978+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v217: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:45.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:45 smithi139 bash[23309]: cluster 2024-09-16T14:38:44.577602+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T14:38:45.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:45 smithi019 bash[22501]: cluster 2024-09-16T14:38:44.466978+0000 mgr.a (mgr.14150) 270 : cluster [DBG] pgmap v217: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:45.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:45 smithi019 bash[22501]: cluster 2024-09-16T14:38:44.577602+0000 mon.a (mon.0) 732 : cluster [DBG] osdmap e34: 5 total, 5 up, 5 in 2024-09-16T14:38:46.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:46 smithi139 bash[23309]: cluster 2024-09-16T14:38:45.579217+0000 mon.a (mon.0) 733 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T14:38:46.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:46 smithi139 bash[23309]: audit 2024-09-16T14:38:45.653246+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:46 smithi139 bash[23309]: audit 2024-09-16T14:38:45.663029+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:46 smithi139 bash[23309]: audit 2024-09-16T14:38:45.674090+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:46 smithi139 bash[23309]: cluster 2024-09-16T14:38:46.311182+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T14:38:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:46 smithi162 bash[23377]: cluster 2024-09-16T14:38:45.579217+0000 mon.a (mon.0) 733 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T14:38:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:46 smithi162 bash[23377]: audit 2024-09-16T14:38:45.653246+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:46 smithi162 bash[23377]: audit 2024-09-16T14:38:45.663029+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:46 smithi162 bash[23377]: audit 2024-09-16T14:38:45.674090+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:46 smithi162 bash[23377]: cluster 2024-09-16T14:38:46.311182+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T14:38:46.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:46 smithi019 bash[22501]: cluster 2024-09-16T14:38:45.579217+0000 mon.a (mon.0) 733 : cluster [DBG] osdmap e35: 5 total, 5 up, 5 in 2024-09-16T14:38:46.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:46 smithi019 bash[22501]: audit 2024-09-16T14:38:45.653246+0000 mon.a (mon.0) 734 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:46 smithi019 bash[22501]: audit 2024-09-16T14:38:45.663029+0000 mon.a (mon.0) 735 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:46 smithi019 bash[22501]: audit 2024-09-16T14:38:45.674090+0000 mon.a (mon.0) 736 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:46.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:46 smithi019 bash[22501]: cluster 2024-09-16T14:38:46.311182+0000 mon.a (mon.0) 737 : cluster [DBG] osdmap e36: 5 total, 5 up, 5 in 2024-09-16T14:38:47.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:47 smithi139 bash[23309]: cluster 2024-09-16T14:38:46.467495+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:47.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:47 smithi139 bash[23309]: cluster 2024-09-16T14:38:47.319062+0000 mon.a (mon.0) 738 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T14:38:47.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:47 smithi162 bash[23377]: cluster 2024-09-16T14:38:46.467495+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:47.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:47 smithi162 bash[23377]: cluster 2024-09-16T14:38:47.319062+0000 mon.a (mon.0) 738 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T14:38:47.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:47 smithi019 bash[22501]: cluster 2024-09-16T14:38:46.467495+0000 mgr.a (mgr.14150) 271 : cluster [DBG] pgmap v221: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:38:47.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:47 smithi019 bash[22501]: cluster 2024-09-16T14:38:47.319062+0000 mon.a (mon.0) 738 : cluster [DBG] osdmap e37: 5 total, 5 up, 5 in 2024-09-16T14:38:49.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.382680+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.390515+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.395138+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:49.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.400740+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.401104+0000 mon.a (mon.0) 743 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:49.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.402958+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:49.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: cluster 2024-09-16T14:38:48.406708+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 146 KiB/s, 0 objects/s recovering 2024-09-16T14:38:49.682 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:49 smithi162 bash[23377]: audit 2024-09-16T14:38:48.413128+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.382680+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.390515+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.395138+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.400740+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.401104+0000 mon.a (mon.0) 743 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.402958+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:49.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: cluster 2024-09-16T14:38:48.406708+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 146 KiB/s, 0 objects/s recovering 2024-09-16T14:38:49.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:49 smithi019 bash[22501]: audit 2024-09-16T14:38:48.413128+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.382680+0000 mon.a (mon.0) 739 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.390515+0000 mon.a (mon.0) 740 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.395138+0000 mon.a (mon.0) 741 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:49.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.400740+0000 mon.a (mon.0) 742 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:49.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.401104+0000 mon.a (mon.0) 743 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:49.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.402958+0000 mon.a (mon.0) 744 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:49.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: cluster 2024-09-16T14:38:48.406708+0000 mgr.a (mgr.14150) 272 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 146 KiB/s, 0 objects/s recovering 2024-09-16T14:38:49.853 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:49 smithi139 bash[23309]: audit 2024-09-16T14:38:48.413128+0000 mon.a (mon.0) 745 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:50.321 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:38:50.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:50 smithi162 bash[23377]: cluster 2024-09-16T14:38:49.396603+0000 mon.a (mon.0) 746 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:38:50.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:50 smithi019 bash[22501]: cluster 2024-09-16T14:38:49.396603+0000 mon.a (mon.0) 746 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:38:50.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:50 smithi139 bash[23309]: cluster 2024-09-16T14:38:49.396603+0000 mon.a (mon.0) 746 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-09-16T14:38:51.538 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:51 smithi162 bash[23377]: cluster 2024-09-16T14:38:50.407282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-16T14:38:51.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:51 smithi019 bash[22501]: cluster 2024-09-16T14:38:50.407282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-16T14:38:51.852 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:51 smithi139 bash[23309]: cluster 2024-09-16T14:38:50.407282+0000 mgr.a (mgr.14150) 273 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-09-16T14:38:53.187 INFO:teuthology.orchestra.run.smithi162.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-09-16T14:38:53.349 INFO:teuthology.orchestra.run.smithi162.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-09-16T14:38:53.368 INFO:teuthology.orchestra.run.smithi162.stderr: stderr: 10+0 records in 2024-09-16T14:38:53.369 INFO:teuthology.orchestra.run.smithi162.stderr:10+0 records out 2024-09-16T14:38:53.369 INFO:teuthology.orchestra.run.smithi162.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0164892 s, 636 MB/s 2024-09-16T14:38:53.369 INFO:teuthology.orchestra.run.smithi162.stderr:--> Zapping successful for: 2024-09-16T14:38:53.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:53 smithi139 bash[23309]: cluster 2024-09-16T14:38:52.407895+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T14:38:53.663 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:53 smithi019 bash[22501]: cluster 2024-09-16T14:38:52.407895+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T14:38:53.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:53 smithi162 bash[23377]: cluster 2024-09-16T14:38:52.407895+0000 mgr.a (mgr.14150) 274 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-16T14:38:53.930 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi162:vg_nvme/lv_3 2024-09-16T14:38:55.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:55 smithi162 bash[23377]: cluster 2024-09-16T14:38:54.408650+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-16T14:38:55.724 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:55 smithi139 bash[23309]: cluster 2024-09-16T14:38:54.408650+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-16T14:38:55.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:55 smithi019 bash[22501]: cluster 2024-09-16T14:38:54.408650+0000 mgr.a (mgr.14150) 275 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-09-16T14:38:57.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.788717+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.794336+0000 mon.a (mon.0) 748 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.796930+0000 mon.a (mon.0) 749 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.800504+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.800747+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.802474+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: cluster 2024-09-16T14:38:55.805189+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T14:38:57.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:56 smithi139 bash[23309]: audit 2024-09-16T14:38:55.810113+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.788717+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.794336+0000 mon.a (mon.0) 748 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.796930+0000 mon.a (mon.0) 749 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.800504+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.800747+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.802474+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: cluster 2024-09-16T14:38:55.805189+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T14:38:57.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:56 smithi162 bash[23377]: audit 2024-09-16T14:38:55.810113+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.788717+0000 mon.a (mon.0) 747 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.794336+0000 mon.a (mon.0) 748 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.796930+0000 mon.a (mon.0) 749 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.800504+0000 mon.a (mon.0) 750 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.800747+0000 mon.a (mon.0) 751 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:38:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.802474+0000 mon.a (mon.0) 752 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:38:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: cluster 2024-09-16T14:38:55.805189+0000 mgr.a (mgr.14150) 276 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-09-16T14:38:57.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:56 smithi019 bash[22501]: audit 2024-09-16T14:38:55.810113+0000 mon.a (mon.0) 753 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:57 smithi139 bash[23309]: cluster 2024-09-16T14:38:56.798166+0000 mon.a (mon.0) 754 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:57 smithi139 bash[23309]: cluster 2024-09-16T14:38:56.798212+0000 mon.a (mon.0) 755 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:57 smithi139 bash[23309]: audit 2024-09-16T14:38:57.476489+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:57 smithi139 bash[23309]: audit 2024-09-16T14:38:57.485042+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:57 smithi139 bash[23309]: audit 2024-09-16T14:38:57.494553+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:57 smithi162 bash[23377]: cluster 2024-09-16T14:38:56.798166+0000 mon.a (mon.0) 754 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:57 smithi162 bash[23377]: cluster 2024-09-16T14:38:56.798212+0000 mon.a (mon.0) 755 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:57 smithi162 bash[23377]: audit 2024-09-16T14:38:57.476489+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:57 smithi162 bash[23377]: audit 2024-09-16T14:38:57.485042+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:57 smithi162 bash[23377]: audit 2024-09-16T14:38:57.494553+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:57 smithi019 bash[22501]: cluster 2024-09-16T14:38:56.798166+0000 mon.a (mon.0) 754 : cluster [INF] Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-09-16T14:38:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:57 smithi019 bash[22501]: cluster 2024-09-16T14:38:56.798212+0000 mon.a (mon.0) 755 : cluster [INF] Cluster is now healthy 2024-09-16T14:38:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:57 smithi019 bash[22501]: audit 2024-09-16T14:38:57.476489+0000 mon.a (mon.0) 756 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:57 smithi019 bash[22501]: audit 2024-09-16T14:38:57.485042+0000 mon.a (mon.0) 757 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:57 smithi019 bash[22501]: audit 2024-09-16T14:38:57.494553+0000 mon.a (mon.0) 758 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:38:58.426 INFO:teuthology.orchestra.run.smithi162.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.c/config 2024-09-16T14:38:59.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:38:58 smithi139 bash[23309]: cluster 2024-09-16T14:38:57.805734+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T14:38:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:38:58 smithi162 bash[23377]: cluster 2024-09-16T14:38:57.805734+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T14:38:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:38:58 smithi019 bash[22501]: cluster 2024-09-16T14:38:57.805734+0000 mgr.a (mgr.14150) 277 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-16T14:39:01.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:00 smithi162 bash[23377]: cluster 2024-09-16T14:38:59.806342+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:00 smithi019 bash[22501]: cluster 2024-09-16T14:38:59.806342+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:01.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:00 smithi139 bash[23309]: cluster 2024-09-16T14:38:59.806342+0000 mgr.a (mgr.14150) 278 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:02.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:01 smithi162 bash[23377]: audit 2024-09-16T14:39:01.315989+0000 mon.a (mon.0) 759 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:39:02.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:01 smithi162 bash[23377]: audit 2024-09-16T14:39:01.322034+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:39:02.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:01 smithi162 bash[23377]: audit 2024-09-16T14:39:01.323766+0000 mon.a (mon.0) 761 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:01 smithi019 bash[22501]: audit 2024-09-16T14:39:01.315989+0000 mon.a (mon.0) 759 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:39:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:01 smithi019 bash[22501]: audit 2024-09-16T14:39:01.322034+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:39:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:01 smithi019 bash[22501]: audit 2024-09-16T14:39:01.323766+0000 mon.a (mon.0) 761 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:02.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:01 smithi139 bash[23309]: audit 2024-09-16T14:39:01.315989+0000 mon.a (mon.0) 759 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-16T14:39:02.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:01 smithi139 bash[23309]: audit 2024-09-16T14:39:01.322034+0000 mon.a (mon.0) 760 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-16T14:39:02.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:01 smithi139 bash[23309]: audit 2024-09-16T14:39:01.323766+0000 mon.a (mon.0) 761 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:03.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:02 smithi162 bash[23377]: audit 2024-09-16T14:39:01.309733+0000 mgr.a (mgr.14150) 279 : audit [DBG] from='client.24214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:39:03.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:02 smithi162 bash[23377]: cluster 2024-09-16T14:39:01.806896+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:03.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:02 smithi019 bash[22501]: audit 2024-09-16T14:39:01.309733+0000 mgr.a (mgr.14150) 279 : audit [DBG] from='client.24214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:39:03.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:02 smithi019 bash[22501]: cluster 2024-09-16T14:39:01.806896+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:03.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:02 smithi139 bash[23309]: audit 2024-09-16T14:39:01.309733+0000 mgr.a (mgr.14150) 279 : audit [DBG] from='client.24214 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi162:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:39:03.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:02 smithi139 bash[23309]: cluster 2024-09-16T14:39:01.806896+0000 mgr.a (mgr.14150) 280 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:05.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:04 smithi162 bash[23377]: cluster 2024-09-16T14:39:03.807493+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:04 smithi019 bash[22501]: cluster 2024-09-16T14:39:03.807493+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:05.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:04 smithi139 bash[23309]: cluster 2024-09-16T14:39:03.807493+0000 mgr.a (mgr.14150) 281 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:06 smithi162 bash[23377]: cluster 2024-09-16T14:39:05.808082+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:06 smithi162 bash[23377]: audit 2024-09-16T14:39:05.889186+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:06 smithi162 bash[23377]: audit 2024-09-16T14:39:05.897614+0000 mon.a (mon.0) 763 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:06 smithi162 bash[23377]: audit 2024-09-16T14:39:05.907364+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:06 smithi019 bash[22501]: cluster 2024-09-16T14:39:05.808082+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:06 smithi019 bash[22501]: audit 2024-09-16T14:39:05.889186+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:06 smithi019 bash[22501]: audit 2024-09-16T14:39:05.897614+0000 mon.a (mon.0) 763 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:06 smithi019 bash[22501]: audit 2024-09-16T14:39:05.907364+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:06 smithi139 bash[23309]: cluster 2024-09-16T14:39:05.808082+0000 mgr.a (mgr.14150) 282 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:07.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:06 smithi139 bash[23309]: audit 2024-09-16T14:39:05.889186+0000 mon.a (mon.0) 762 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:06 smithi139 bash[23309]: audit 2024-09-16T14:39:05.897614+0000 mon.a (mon.0) 763 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:07.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:06 smithi139 bash[23309]: audit 2024-09-16T14:39:05.907364+0000 mon.a (mon.0) 764 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:08 smithi162 bash[23377]: cluster 2024-09-16T14:39:07.808663+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:08 smithi019 bash[22501]: cluster 2024-09-16T14:39:07.808663+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:09.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:08 smithi139 bash[23309]: cluster 2024-09-16T14:39:07.808663+0000 mgr.a (mgr.14150) 283 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:10.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:09 smithi162 bash[23377]: audit 2024-09-16T14:39:09.863656+0000 mon.a (mon.0) 765 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:09 smithi162 bash[23377]: audit 2024-09-16T14:39:09.865545+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.162:0/3458664102' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:09 smithi162 bash[23377]: audit 2024-09-16T14:39:09.874439+0000 mon.a (mon.0) 766 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]': finished 2024-09-16T14:39:10.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:09 smithi162 bash[23377]: cluster 2024-09-16T14:39:09.874591+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T14:39:10.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:09 smithi162 bash[23377]: audit 2024-09-16T14:39:09.874888+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:09 smithi019 bash[22501]: audit 2024-09-16T14:39:09.863656+0000 mon.a (mon.0) 765 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:09 smithi019 bash[22501]: audit 2024-09-16T14:39:09.865545+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.162:0/3458664102' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:09 smithi019 bash[22501]: audit 2024-09-16T14:39:09.874439+0000 mon.a (mon.0) 766 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]': finished 2024-09-16T14:39:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:09 smithi019 bash[22501]: cluster 2024-09-16T14:39:09.874591+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T14:39:10.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:09 smithi019 bash[22501]: audit 2024-09-16T14:39:09.874888+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:10.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:09 smithi139 bash[23309]: audit 2024-09-16T14:39:09.863656+0000 mon.a (mon.0) 765 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:09 smithi139 bash[23309]: audit 2024-09-16T14:39:09.865545+0000 mon.c (mon.1) 9 : audit [INF] from='client.? 172.21.15.162:0/3458664102' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]: dispatch 2024-09-16T14:39:10.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:09 smithi139 bash[23309]: audit 2024-09-16T14:39:09.874439+0000 mon.a (mon.0) 766 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a46c46c1-4974-402c-aec5-afec59f805c7"}]': finished 2024-09-16T14:39:10.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:09 smithi139 bash[23309]: cluster 2024-09-16T14:39:09.874591+0000 mon.a (mon.0) 767 : cluster [DBG] osdmap e38: 6 total, 5 up, 6 in 2024-09-16T14:39:10.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:09 smithi139 bash[23309]: audit 2024-09-16T14:39:09.874888+0000 mon.a (mon.0) 768 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:11.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:10 smithi162 bash[23377]: cluster 2024-09-16T14:39:09.809233+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:11.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:10 smithi162 bash[23377]: audit 2024-09-16T14:39:10.447422+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.162:0/3502341177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:39:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:10 smithi019 bash[22501]: cluster 2024-09-16T14:39:09.809233+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:10 smithi019 bash[22501]: audit 2024-09-16T14:39:10.447422+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.162:0/3502341177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:39:11.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:10 smithi139 bash[23309]: cluster 2024-09-16T14:39:09.809233+0000 mgr.a (mgr.14150) 284 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:11.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:10 smithi139 bash[23309]: audit 2024-09-16T14:39:10.447422+0000 mon.c (mon.1) 10 : audit [DBG] from='client.? 172.21.15.162:0/3502341177' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-16T14:39:12.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:11 smithi162 bash[23377]: cluster 2024-09-16T14:39:11.809791+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:11 smithi019 bash[22501]: cluster 2024-09-16T14:39:11.809791+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:12.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:11 smithi139 bash[23309]: cluster 2024-09-16T14:39:11.809791+0000 mgr.a (mgr.14150) 285 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:15.155 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:14 smithi019 bash[22501]: cluster 2024-09-16T14:39:13.810342+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:15.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:14 smithi162 bash[23377]: cluster 2024-09-16T14:39:13.810342+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:15.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:14 smithi139 bash[23309]: cluster 2024-09-16T14:39:13.810342+0000 mgr.a (mgr.14150) 286 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:16.650 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:16 smithi139 bash[23309]: audit 2024-09-16T14:39:15.393076+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.650 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:16 smithi139 bash[23309]: audit 2024-09-16T14:39:15.400594+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.650 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:16 smithi139 bash[23309]: audit 2024-09-16T14:39:15.410078+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.650 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:16 smithi139 bash[23309]: cluster 2024-09-16T14:39:15.810865+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:16.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:16 smithi162 bash[23377]: audit 2024-09-16T14:39:15.393076+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:16 smithi162 bash[23377]: audit 2024-09-16T14:39:15.400594+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:16 smithi162 bash[23377]: audit 2024-09-16T14:39:15.410078+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:16 smithi162 bash[23377]: cluster 2024-09-16T14:39:15.810865+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:16.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:16 smithi019 bash[22501]: audit 2024-09-16T14:39:15.393076+0000 mon.a (mon.0) 769 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:16 smithi019 bash[22501]: audit 2024-09-16T14:39:15.400594+0000 mon.a (mon.0) 770 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:16 smithi019 bash[22501]: audit 2024-09-16T14:39:15.410078+0000 mon.a (mon.0) 771 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:16.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:16 smithi019 bash[22501]: cluster 2024-09-16T14:39:15.810865+0000 mgr.a (mgr.14150) 287 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:18 smithi019 bash[22501]: audit 2024-09-16T14:39:17.702042+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:18 smithi019 bash[22501]: audit 2024-09-16T14:39:17.710893+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:18 smithi019 bash[22501]: audit 2024-09-16T14:39:17.720756+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:18.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:18 smithi019 bash[22501]: cluster 2024-09-16T14:39:17.811413+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:19.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:18 smithi139 bash[23309]: audit 2024-09-16T14:39:17.702042+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:18 smithi139 bash[23309]: audit 2024-09-16T14:39:17.710893+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:18 smithi139 bash[23309]: audit 2024-09-16T14:39:17.720756+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:18 smithi139 bash[23309]: cluster 2024-09-16T14:39:17.811413+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:19.131 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:18 smithi162 bash[23377]: audit 2024-09-16T14:39:17.702042+0000 mon.a (mon.0) 772 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.131 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:18 smithi162 bash[23377]: audit 2024-09-16T14:39:17.710893+0000 mon.a (mon.0) 773 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.131 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:18 smithi162 bash[23377]: audit 2024-09-16T14:39:17.720756+0000 mon.a (mon.0) 774 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:19.131 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:18 smithi162 bash[23377]: cluster 2024-09-16T14:39:17.811413+0000 mgr.a (mgr.14150) 288 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:20.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:20 smithi162 bash[23377]: cluster 2024-09-16T14:39:19.811964+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:20 smithi019 bash[22501]: cluster 2024-09-16T14:39:19.811964+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:21.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:20 smithi139 bash[23309]: cluster 2024-09-16T14:39:19.811964+0000 mgr.a (mgr.14150) 289 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:22.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:22 smithi139 bash[23309]: audit 2024-09-16T14:39:21.640238+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T14:39:22.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:22 smithi139 bash[23309]: audit 2024-09-16T14:39:21.642306+0000 mon.a (mon.0) 776 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:22.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:22 smithi139 bash[23309]: cephadm 2024-09-16T14:39:21.644082+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Deploying daemon osd.5 on smithi162 2024-09-16T14:39:22.602 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:22 smithi139 bash[23309]: cluster 2024-09-16T14:39:21.812500+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:22.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:22 smithi162 bash[23377]: audit 2024-09-16T14:39:21.640238+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T14:39:22.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:22 smithi162 bash[23377]: audit 2024-09-16T14:39:21.642306+0000 mon.a (mon.0) 776 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:22.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:22 smithi162 bash[23377]: cephadm 2024-09-16T14:39:21.644082+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Deploying daemon osd.5 on smithi162 2024-09-16T14:39:22.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:22 smithi162 bash[23377]: cluster 2024-09-16T14:39:21.812500+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:22 smithi019 bash[22501]: audit 2024-09-16T14:39:21.640238+0000 mon.a (mon.0) 775 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-16T14:39:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:22 smithi019 bash[22501]: audit 2024-09-16T14:39:21.642306+0000 mon.a (mon.0) 776 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:22 smithi019 bash[22501]: cephadm 2024-09-16T14:39:21.644082+0000 mgr.a (mgr.14150) 290 : cephadm [INF] Deploying daemon osd.5 on smithi162 2024-09-16T14:39:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:22 smithi019 bash[22501]: cluster 2024-09-16T14:39:21.812500+0000 mgr.a (mgr.14150) 291 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:25.144 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:24 smithi162 bash[23377]: cluster 2024-09-16T14:39:23.813035+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:24 smithi019 bash[22501]: cluster 2024-09-16T14:39:23.813035+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:25.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:24 smithi139 bash[23309]: cluster 2024-09-16T14:39:23.813035+0000 mgr.a (mgr.14150) 292 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:26.398 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:39:26.398 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:39:26 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:39:26.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:39:26.682 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:39:26 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:39:27.046 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: cluster 2024-09-16T14:39:25.813620+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:27.046 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.118235+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.046 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.127206+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.046 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.136934+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.046 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.649519+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:27.047 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.658261+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.047 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.658812+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:27.047 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.661135+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:27.047 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.666448+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.047 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:26 smithi162 bash[23377]: audit 2024-09-16T14:39:26.673646+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: cluster 2024-09-16T14:39:25.813620+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.118235+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.127206+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.136934+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.649519+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.658261+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.658812+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.661135+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.666448+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:26 smithi019 bash[22501]: audit 2024-09-16T14:39:26.673646+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: cluster 2024-09-16T14:39:25.813620+0000 mgr.a (mgr.14150) 293 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.118235+0000 mon.a (mon.0) 777 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.127206+0000 mon.a (mon.0) 778 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.136934+0000 mon.a (mon.0) 779 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.649519+0000 mon.a (mon.0) 780 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.658261+0000 mon.a (mon.0) 781 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.658812+0000 mon.a (mon.0) 782 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.661135+0000 mon.a (mon.0) 783 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:27.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.666448+0000 mon.a (mon.0) 784 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:27.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:26 smithi139 bash[23309]: audit 2024-09-16T14:39:26.673646+0000 mon.a (mon.0) 785 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:29.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:28 smithi162 bash[23377]: cluster 2024-09-16T14:39:27.814164+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:28 smithi019 bash[22501]: cluster 2024-09-16T14:39:27.814164+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:29.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:28 smithi139 bash[23309]: cluster 2024-09-16T14:39:27.814164+0000 mgr.a (mgr.14150) 294 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:31.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:30 smithi162 bash[23377]: cluster 2024-09-16T14:39:29.814740+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:30 smithi019 bash[22501]: cluster 2024-09-16T14:39:29.814740+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:31.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:30 smithi139 bash[23309]: cluster 2024-09-16T14:39:29.814740+0000 mgr.a (mgr.14150) 295 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:33.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:32 smithi162 bash[23377]: cluster 2024-09-16T14:39:31.815277+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:32 smithi019 bash[22501]: cluster 2024-09-16T14:39:31.815277+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:33.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:32 smithi139 bash[23309]: cluster 2024-09-16T14:39:31.815277+0000 mgr.a (mgr.14150) 296 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:34 smithi019 bash[22501]: cluster 2024-09-16T14:39:33.815836+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:34 smithi019 bash[22501]: audit 2024-09-16T14:39:34.061913+0000 mon.a (mon.0) 786 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:34.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:34 smithi019 bash[22501]: audit 2024-09-16T14:39:34.064023+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:35.160 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:34 smithi139 bash[23309]: cluster 2024-09-16T14:39:33.815836+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:35.160 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:34 smithi139 bash[23309]: audit 2024-09-16T14:39:34.061913+0000 mon.a (mon.0) 786 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:35.160 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:34 smithi139 bash[23309]: audit 2024-09-16T14:39:34.064023+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:35.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:34 smithi162 bash[23377]: cluster 2024-09-16T14:39:33.815836+0000 mgr.a (mgr.14150) 297 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:35.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:34 smithi162 bash[23377]: audit 2024-09-16T14:39:34.061913+0000 mon.a (mon.0) 786 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:35.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:34 smithi162 bash[23377]: audit 2024-09-16T14:39:34.064023+0000 mon.c (mon.1) 11 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-16T14:39:36.026 INFO:teuthology.orchestra.run.smithi162.stdout:Created osd(s) 5 on host 'smithi162' 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:34.895081+0000 mon.a (mon.0) 787 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: cluster 2024-09-16T14:39:34.895224+0000 mon.a (mon.0) 788 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:34.895921+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:34.899308+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:34.906837+0000 mon.a (mon.0) 790 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.531945+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.540373+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.545539+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:36.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.550858+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.556813+0000 mon.a (mon.0) 795 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:36.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.558824+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:36.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:35 smithi162 bash[23377]: audit 2024-09-16T14:39:35.569244+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:34.895081+0000 mon.a (mon.0) 787 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T14:39:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: cluster 2024-09-16T14:39:34.895224+0000 mon.a (mon.0) 788 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T14:39:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:34.895921+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:34.899308+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:34.906837+0000 mon.a (mon.0) 790 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.531945+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.540373+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.545539+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.550858+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.556813+0000 mon.a (mon.0) 795 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.558824+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:36.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:35 smithi019 bash[22501]: audit 2024-09-16T14:39:35.569244+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:34.895081+0000 mon.a (mon.0) 787 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: cluster 2024-09-16T14:39:34.895224+0000 mon.a (mon.0) 788 : cluster [DBG] osdmap e39: 6 total, 5 up, 6 in 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:34.895921+0000 mon.a (mon.0) 789 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:34.899308+0000 mon.c (mon.1) 12 : audit [INF] from='osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:34.906837+0000 mon.a (mon.0) 790 : audit [INF] from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]: dispatch 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.531945+0000 mon.a (mon.0) 791 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.540373+0000 mon.a (mon.0) 792 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.545539+0000 mon.a (mon.0) 793 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:36.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.550858+0000 mon.a (mon.0) 794 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.556813+0000 mon.a (mon.0) 795 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:36.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.558824+0000 mon.a (mon.0) 796 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:36.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:35 smithi139 bash[23309]: audit 2024-09-16T14:39:35.569244+0000 mon.a (mon.0) 797 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:36.590 DEBUG:teuthology.orchestra.run.smithi162:osd.5> sudo journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.5.service 2024-09-16T14:39:36.593 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-16T14:39:36.593 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-16T14:39:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: cephadm 2024-09-16T14:39:35.543235+0000 mgr.a (mgr.14150) 298 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:39:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: cluster 2024-09-16T14:39:35.816381+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:35.906614+0000 mon.a (mon.0) 798 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: cluster 2024-09-16T14:39:35.906820+0000 mon.a (mon.0) 799 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:35.907672+0000 mon.a (mon.0) 800 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:35.920564+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.004530+0000 mon.a (mon.0) 802 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.014799+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.015224+0000 mon.a (mon.0) 804 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.017401+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.024484+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.030231+0000 mon.a (mon.0) 807 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: cluster 2024-09-16T14:39:36.325847+0000 mon.a (mon.0) 808 : cluster [INF] osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133] boot 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: cluster 2024-09-16T14:39:36.325881+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T14:39:37.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:36 smithi162 bash[23377]: audit 2024-09-16T14:39:36.326086+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: cephadm 2024-09-16T14:39:35.543235+0000 mgr.a (mgr.14150) 298 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:39:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: cluster 2024-09-16T14:39:35.816381+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:35.906614+0000 mon.a (mon.0) 798 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: cluster 2024-09-16T14:39:35.906820+0000 mon.a (mon.0) 799 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:35.907672+0000 mon.a (mon.0) 800 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:35.920564+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.004530+0000 mon.a (mon.0) 802 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.014799+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.015224+0000 mon.a (mon.0) 804 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.017401+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.024484+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.030231+0000 mon.a (mon.0) 807 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: cluster 2024-09-16T14:39:36.325847+0000 mon.a (mon.0) 808 : cluster [INF] osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133] boot 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: cluster 2024-09-16T14:39:36.325881+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T14:39:37.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:36 smithi019 bash[22501]: audit 2024-09-16T14:39:36.326086+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: cephadm 2024-09-16T14:39:35.543235+0000 mgr.a (mgr.14150) 298 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: cluster 2024-09-16T14:39:35.816381+0000 mgr.a (mgr.14150) 299 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:35.906614+0000 mon.a (mon.0) 798 : audit [INF] from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi162", "root=default"]}]': finished 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: cluster 2024-09-16T14:39:35.906820+0000 mon.a (mon.0) 799 : cluster [DBG] osdmap e40: 6 total, 5 up, 6 in 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:35.907672+0000 mon.a (mon.0) 800 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:35.920564+0000 mon.a (mon.0) 801 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.004530+0000 mon.a (mon.0) 802 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.014799+0000 mon.a (mon.0) 803 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.015224+0000 mon.a (mon.0) 804 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.017401+0000 mon.a (mon.0) 805 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.024484+0000 mon.a (mon.0) 806 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.030231+0000 mon.a (mon.0) 807 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:37.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: cluster 2024-09-16T14:39:36.325847+0000 mon.a (mon.0) 808 : cluster [INF] osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133] boot 2024-09-16T14:39:37.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: cluster 2024-09-16T14:39:36.325881+0000 mon.a (mon.0) 809 : cluster [DBG] osdmap e41: 6 total, 6 up, 6 in 2024-09-16T14:39:37.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:36 smithi139 bash[23309]: audit 2024-09-16T14:39:36.326086+0000 mon.a (mon.0) 810 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: cluster 2024-09-16T14:39:35.033941+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: cluster 2024-09-16T14:39:35.034016+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: cluster 2024-09-16T14:39:37.327170+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: cluster 2024-09-16T14:39:37.816940+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.833946+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.842331+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.848193+0000 mon.a (mon.0) 814 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.854527+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.855255+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:38.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.861868+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:38.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.867857+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.874971+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.881897+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.103 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:37 smithi139 bash[23309]: audit 2024-09-16T14:39:37.893547+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: cluster 2024-09-16T14:39:35.033941+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:39:38.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: cluster 2024-09-16T14:39:35.034016+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:39:38.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: cluster 2024-09-16T14:39:37.327170+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T14:39:38.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: cluster 2024-09-16T14:39:37.816940+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.833946+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.842331+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.848193+0000 mon.a (mon.0) 814 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.854527+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.855255+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.861868+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.867857+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.874971+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.881897+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.182 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:37 smithi162 bash[23377]: audit 2024-09-16T14:39:37.893547+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: cluster 2024-09-16T14:39:35.033941+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-16T14:39:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: cluster 2024-09-16T14:39:35.034016+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-16T14:39:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: cluster 2024-09-16T14:39:37.327170+0000 mon.a (mon.0) 811 : cluster [DBG] osdmap e42: 6 total, 6 up, 6 in 2024-09-16T14:39:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: cluster 2024-09-16T14:39:37.816940+0000 mgr.a (mgr.14150) 300 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:38.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.833946+0000 mon.a (mon.0) 812 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.842331+0000 mon.a (mon.0) 813 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.848193+0000 mon.a (mon.0) 814 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.854527+0000 mon.a (mon.0) 815 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.855255+0000 mon.a (mon.0) 816 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.861868+0000 mon.a (mon.0) 817 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.867857+0000 mon.a (mon.0) 818 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.874971+0000 mon.a (mon.0) 819 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.881897+0000 mon.a (mon.0) 820 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:38.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:37 smithi019 bash[22501]: audit 2024-09-16T14:39:37.893547+0000 mon.a (mon.0) 821 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:39.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:39 smithi139 bash[23309]: cluster 2024-09-16T14:39:38.334703+0000 mon.a (mon.0) 822 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T14:39:39.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:39 smithi162 bash[23377]: cluster 2024-09-16T14:39:38.334703+0000 mon.a (mon.0) 822 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T14:39:39.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:39 smithi019 bash[22501]: cluster 2024-09-16T14:39:38.334703+0000 mon.a (mon.0) 822 : cluster [DBG] osdmap e43: 6 total, 6 up, 6 in 2024-09-16T14:39:40.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:40 smithi139 bash[23309]: cluster 2024-09-16T14:39:39.335330+0000 mon.a (mon.0) 823 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T14:39:40.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:40 smithi139 bash[23309]: cluster 2024-09-16T14:39:39.817535+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v256: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:40.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:40 smithi162 bash[23377]: cluster 2024-09-16T14:39:39.335330+0000 mon.a (mon.0) 823 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T14:39:40.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:40 smithi162 bash[23377]: cluster 2024-09-16T14:39:39.817535+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v256: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:40.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:40 smithi019 bash[22501]: cluster 2024-09-16T14:39:39.335330+0000 mon.a (mon.0) 823 : cluster [DBG] osdmap e44: 6 total, 6 up, 6 in 2024-09-16T14:39:40.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:40 smithi019 bash[22501]: cluster 2024-09-16T14:39:39.817535+0000 mgr.a (mgr.14150) 301 : cluster [DBG] pgmap v256: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:41.284 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:39:41.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:41 smithi162 bash[23377]: cluster 2024-09-16T14:39:40.357370+0000 mon.a (mon.0) 824 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T14:39:41.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:41 smithi019 bash[22501]: cluster 2024-09-16T14:39:40.357370+0000 mon.a (mon.0) 824 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T14:39:41.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:41 smithi139 bash[23309]: cluster 2024-09-16T14:39:40.357370+0000 mon.a (mon.0) 824 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T14:39:42.666 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:42 smithi019 bash[22501]: cluster 2024-09-16T14:39:41.818128+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:42.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:42 smithi162 bash[23377]: cluster 2024-09-16T14:39:41.818128+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:42.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:42 smithi139 bash[23309]: cluster 2024-09-16T14:39:41.818128+0000 mgr.a (mgr.14150) 302 : cluster [DBG] pgmap v258: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:44.354 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:39:44.932 INFO:teuthology.orchestra.run.smithi019.stdout:{"epoch":45,"num_osds":6,"num_up_osds":6,"osd_up_since":1726497576,"num_in_osds":6,"osd_in_since":1726497549,"num_remapped_pgs":0} 2024-09-16T14:39:44.933 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T14:39:45.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:44 smithi162 bash[23377]: cluster 2024-09-16T14:39:43.818742+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T14:39:45.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:44 smithi162 bash[23377]: audit 2024-09-16T14:39:44.353420+0000 mon.a (mon.0) 825 : audit [DBG] from='client.? 172.21.15.19:0/4196560058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T14:39:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:44 smithi019 bash[22501]: cluster 2024-09-16T14:39:43.818742+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T14:39:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:44 smithi019 bash[22501]: audit 2024-09-16T14:39:44.353420+0000 mon.a (mon.0) 825 : audit [DBG] from='client.? 172.21.15.19:0/4196560058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T14:39:45.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:44 smithi139 bash[23309]: cluster 2024-09-16T14:39:43.818742+0000 mgr.a (mgr.14150) 303 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-16T14:39:45.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:44 smithi139 bash[23309]: audit 2024-09-16T14:39:44.353420+0000 mon.a (mon.0) 825 : audit [DBG] from='client.? 172.21.15.19:0/4196560058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-16T14:39:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:46 smithi162 bash[23377]: cluster 2024-09-16T14:39:45.819360+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-16T14:39:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:46 smithi162 bash[23377]: audit 2024-09-16T14:39:46.345014+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:46 smithi162 bash[23377]: audit 2024-09-16T14:39:46.353491+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:46.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:46 smithi162 bash[23377]: audit 2024-09-16T14:39:46.363275+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:46 smithi019 bash[22501]: cluster 2024-09-16T14:39:45.819360+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-16T14:39:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:46 smithi019 bash[22501]: audit 2024-09-16T14:39:46.345014+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:46 smithi019 bash[22501]: audit 2024-09-16T14:39:46.353491+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:46 smithi019 bash[22501]: audit 2024-09-16T14:39:46.363275+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:46 smithi139 bash[23309]: cluster 2024-09-16T14:39:45.819360+0000 mgr.a (mgr.14150) 304 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-16T14:39:47.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:46 smithi139 bash[23309]: audit 2024-09-16T14:39:46.345014+0000 mon.a (mon.0) 826 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:46 smithi139 bash[23309]: audit 2024-09-16T14:39:46.353491+0000 mon.a (mon.0) 827 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:47.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:46 smithi139 bash[23309]: audit 2024-09-16T14:39:46.363275+0000 mon.a (mon.0) 828 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:49.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:48 smithi162 bash[23377]: cluster 2024-09-16T14:39:47.819994+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-16T14:39:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:48 smithi019 bash[22501]: cluster 2024-09-16T14:39:47.819994+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-16T14:39:49.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:48 smithi139 bash[23309]: cluster 2024-09-16T14:39:47.819994+0000 mgr.a (mgr.14150) 305 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-16T14:39:49.441 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:39:51.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:50 smithi162 bash[23377]: cluster 2024-09-16T14:39:49.820542+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:39:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:50 smithi019 bash[22501]: cluster 2024-09-16T14:39:49.820542+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:39:51.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:50 smithi139 bash[23309]: cluster 2024-09-16T14:39:49.820542+0000 mgr.a (mgr.14150) 306 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-16T14:39:52.820 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:39:52.820 INFO:teuthology.orchestra.run.smithi019.stdout:{"epoch":45,"fsid":"130fbd00-7438-11ef-bceb-c7b262605968","created":"2024-09-16T14:31:20.198703+0000","modified":"2024-09-16T14:39:40.340411+0000","last_up_change":"2024-09-16T14:39:36.315740+0000","last_in_change":"2024-09-16T14:39:09.864721+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T14:37:03.373298+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8aae7e27-a44a-49c5-98f4-ccf095d19069","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6802","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6803","nonce":1527629402}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6804","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6805","nonce":1527629402}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6808","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6809","nonce":1527629402}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6806","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6807","nonce":1527629402}]},"public_addr":"172.21.15.19:6803/1527629402","cluster_addr":"172.21.15.19:6805/1527629402","heartbeat_back_addr":"172.21.15.19:6809/1527629402","heartbeat_front_addr":"172.21.15.19:6807/1527629402","state":["exists","up"]},{"osd":1,"uuid":"dd79196b-dedb-489c-84f8-451d64c1f50a","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.19:6810","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6811","nonce":3239863345}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6812","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6813","nonce":3239863345}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6816","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6817","nonce":3239863345}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6814","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6815","nonce":3239863345}]},"public_addr":"172.21.15.19:6811/3239863345","cluster_addr":"172.21.15.19:6813/3239863345","heartbeat_back_addr":"172.21.15.19:6817/3239863345","heartbeat_front_addr":"172.21.15.19:6815/3239863345","state":["exists","up"]},{"osd":2,"uuid":"59cbbdf8-ad43-417e-a459-ae7fab2b7faa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6800","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6801","nonce":3553431036}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6802","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6803","nonce":3553431036}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6806","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6807","nonce":3553431036}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6804","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6805","nonce":3553431036}]},"public_addr":"172.21.15.139:6801/3553431036","cluster_addr":"172.21.15.139:6803/3553431036","heartbeat_back_addr":"172.21.15.139:6807/3553431036","heartbeat_front_addr":"172.21.15.139:6805/3553431036","state":["exists","up"]},{"osd":3,"uuid":"be19cbd9-d6a3-4c01-9d13-9e871a2b5537","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6808","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6809","nonce":2629023439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6810","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6811","nonce":2629023439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6814","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6815","nonce":2629023439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6812","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6813","nonce":2629023439}]},"public_addr":"172.21.15.139:6809/2629023439","cluster_addr":"172.21.15.139:6811/2629023439","heartbeat_back_addr":"172.21.15.139:6815/2629023439","heartbeat_front_addr":"172.21.15.139:6813/2629023439","state":["exists","up"]},{"osd":4,"uuid":"b76bffe1-02a4-4de7-86f8-db74edee8aac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6800","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6801","nonce":2975529052}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6802","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6803","nonce":2975529052}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6806","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6807","nonce":2975529052}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6804","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6805","nonce":2975529052}]},"public_addr":"172.21.15.162:6801/2975529052","cluster_addr":"172.21.15.162:6803/2975529052","heartbeat_back_addr":"172.21.15.162:6807/2975529052","heartbeat_front_addr":"172.21.15.162:6805/2975529052","state":["exists","up"]},{"osd":5,"uuid":"a46c46c1-4974-402c-aec5-afec59f805c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6808","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6809","nonce":3026856133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6810","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6811","nonce":3026856133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6814","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6815","nonce":3026856133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6812","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6813","nonce":3026856133}]},"public_addr":"172.21.15.162:6809/3026856133","cluster_addr":"172.21.15.162:6811/3026856133","heartbeat_back_addr":"172.21.15.162:6815/3026856133","heartbeat_front_addr":"172.21.15.162:6813/3026856133","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:35:12.970821+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:36:08.763993+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:00.837139+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:51.531502+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:38:41.964465+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:39:35.034019+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.19:0/2082843895":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2635521321":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2605418762":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/4215708901":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/219409340":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/4237540784":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6801/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6801/98207886":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6800/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6800/98207886":"2024-09-17T14:31:47.163605+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-16T14:39:53.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:52 smithi162 bash[23377]: cluster 2024-09-16T14:39:51.821090+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:39:53.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:52 smithi162 bash[23377]: audit 2024-09-16T14:39:52.818767+0000 mon.a (mon.0) 829 : audit [DBG] from='client.? 172.21.15.19:0/449944650' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:39:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:52 smithi019 bash[22501]: cluster 2024-09-16T14:39:51.821090+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:39:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:52 smithi019 bash[22501]: audit 2024-09-16T14:39:52.818767+0000 mon.a (mon.0) 829 : audit [DBG] from='client.? 172.21.15.19:0/449944650' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:39:53.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:52 smithi139 bash[23309]: cluster 2024-09-16T14:39:51.821090+0000 mgr.a (mgr.14150) 307 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-16T14:39:53.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:52 smithi139 bash[23309]: audit 2024-09-16T14:39:52.818767+0000 mon.a (mon.0) 829 : audit [DBG] from='client.? 172.21.15.19:0/449944650' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:39:53.431 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-16T14:37:03.373298+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '21', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-16T14:39:53.432 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-16T14:39:55.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:54 smithi162 bash[23377]: cluster 2024-09-16T14:39:53.821688+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T14:39:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:54 smithi019 bash[22501]: cluster 2024-09-16T14:39:53.821688+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T14:39:55.315 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:54 smithi139 bash[23309]: cluster 2024-09-16T14:39:53.821688+0000 mgr.a (mgr.14150) 308 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-16T14:39:56.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:56 smithi139 bash[23309]: audit 2024-09-16T14:39:55.431527+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:56 smithi139 bash[23309]: audit 2024-09-16T14:39:55.437340+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:56 smithi139 bash[23309]: audit 2024-09-16T14:39:55.443719+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:56 smithi139 bash[23309]: cluster 2024-09-16T14:39:55.822232+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:56.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:56 smithi019 bash[22501]: audit 2024-09-16T14:39:55.431527+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:56 smithi019 bash[22501]: audit 2024-09-16T14:39:55.437340+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:56 smithi019 bash[22501]: audit 2024-09-16T14:39:55.443719+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:56 smithi019 bash[22501]: cluster 2024-09-16T14:39:55.822232+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:56.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:56 smithi162 bash[23377]: audit 2024-09-16T14:39:55.431527+0000 mon.a (mon.0) 830 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:56 smithi162 bash[23377]: audit 2024-09-16T14:39:55.437340+0000 mon.a (mon.0) 831 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:56 smithi162 bash[23377]: audit 2024-09-16T14:39:55.443719+0000 mon.a (mon.0) 832 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:56.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:56 smithi162 bash[23377]: cluster 2024-09-16T14:39:55.822232+0000 mgr.a (mgr.14150) 309 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:58.131 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:39:59.142 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:58 smithi019 bash[22501]: cluster 2024-09-16T14:39:57.822822+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:59.142 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:58 smithi019 bash[22501]: audit 2024-09-16T14:39:58.105609+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.142 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:58 smithi019 bash[22501]: audit 2024-09-16T14:39:58.115856+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.142 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:39:58 smithi019 bash[22501]: audit 2024-09-16T14:39:58.127573+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:58 smithi162 bash[23377]: cluster 2024-09-16T14:39:57.822822+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:58 smithi162 bash[23377]: audit 2024-09-16T14:39:58.105609+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:58 smithi162 bash[23377]: audit 2024-09-16T14:39:58.115856+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:39:58 smithi162 bash[23377]: audit 2024-09-16T14:39:58.127573+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:58 smithi139 bash[23309]: cluster 2024-09-16T14:39:57.822822+0000 mgr.a (mgr.14150) 310 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:39:59.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:58 smithi139 bash[23309]: audit 2024-09-16T14:39:58.105609+0000 mon.a (mon.0) 833 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:58 smithi139 bash[23309]: audit 2024-09-16T14:39:58.115856+0000 mon.a (mon.0) 834 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:39:59.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:39:58 smithi139 bash[23309]: audit 2024-09-16T14:39:58.127573+0000 mon.a (mon.0) 835 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:01.130 INFO:teuthology.orchestra.run.smithi019.stdout:pg_num: 1 2024-09-16T14:40:01.144 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:00 smithi019 bash[22501]: cluster 2024-09-16T14:39:59.823304+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:01.144 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:00 smithi019 bash[22501]: cluster 2024-09-16T14:40:00.000150+0000 mon.a (mon.0) 836 : cluster [INF] overall HEALTH_OK 2024-09-16T14:40:01.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:00 smithi162 bash[23377]: cluster 2024-09-16T14:39:59.823304+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:01.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:00 smithi162 bash[23377]: cluster 2024-09-16T14:40:00.000150+0000 mon.a (mon.0) 836 : cluster [INF] overall HEALTH_OK 2024-09-16T14:40:01.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:00 smithi139 bash[23309]: cluster 2024-09-16T14:39:59.823304+0000 mgr.a (mgr.14150) 311 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:01.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:00 smithi139 bash[23309]: cluster 2024-09-16T14:40:00.000150+0000 mon.a (mon.0) 836 : cluster [INF] overall HEALTH_OK 2024-09-16T14:40:01.789 INFO:tasks.cephadm:Setting up client nodes... 2024-09-16T14:40:01.789 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-16T14:40:01.789 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-16T14:40:01.790 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-16T14:40:02.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:01 smithi162 bash[23377]: audit 2024-09-16T14:40:01.129927+0000 mon.a (mon.0) 837 : audit [DBG] from='client.? 172.21.15.19:0/896648107' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T14:40:02.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:01 smithi019 bash[22501]: audit 2024-09-16T14:40:01.129927+0000 mon.a (mon.0) 837 : audit [DBG] from='client.? 172.21.15.19:0/896648107' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T14:40:02.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:01 smithi139 bash[23309]: audit 2024-09-16T14:40:01.129927+0000 mon.a (mon.0) 837 : audit [DBG] from='client.? 172.21.15.19:0/896648107' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-16T14:40:03.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:02 smithi162 bash[23377]: cluster 2024-09-16T14:40:01.823797+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:03.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:02 smithi019 bash[22501]: cluster 2024-09-16T14:40:01.823797+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:03.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:02 smithi139 bash[23309]: cluster 2024-09-16T14:40:01.823797+0000 mgr.a (mgr.14150) 312 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:04.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:04 smithi162 bash[23377]: cluster 2024-09-16T14:40:03.824381+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:04 smithi019 bash[22501]: cluster 2024-09-16T14:40:03.824381+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:05.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:04 smithi139 bash[23309]: cluster 2024-09-16T14:40:03.824381+0000 mgr.a (mgr.14150) 313 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:06.476 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:06 smithi162 bash[23377]: cluster 2024-09-16T14:40:05.824930+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:06 smithi162 bash[23377]: audit 2024-09-16T14:40:06.535464+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:06 smithi162 bash[23377]: audit 2024-09-16T14:40:06.540936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:06 smithi162 bash[23377]: audit 2024-09-16T14:40:06.547772+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:06 smithi019 bash[22501]: cluster 2024-09-16T14:40:05.824930+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:06 smithi019 bash[22501]: audit 2024-09-16T14:40:06.535464+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:06 smithi019 bash[22501]: audit 2024-09-16T14:40:06.540936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:06 smithi019 bash[22501]: audit 2024-09-16T14:40:06.547772+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:06 smithi139 bash[23309]: cluster 2024-09-16T14:40:05.824930+0000 mgr.a (mgr.14150) 314 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:06 smithi139 bash[23309]: audit 2024-09-16T14:40:06.535464+0000 mon.a (mon.0) 838 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:06 smithi139 bash[23309]: audit 2024-09-16T14:40:06.540936+0000 mon.a (mon.0) 839 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:06 smithi139 bash[23309]: audit 2024-09-16T14:40:06.547772+0000 mon.a (mon.0) 840 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:09.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:08 smithi162 bash[23377]: cluster 2024-09-16T14:40:07.825404+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:08 smithi019 bash[22501]: cluster 2024-09-16T14:40:07.825404+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:09.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:08 smithi139 bash[23309]: cluster 2024-09-16T14:40:07.825404+0000 mgr.a (mgr.14150) 315 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:09.695 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:40:09.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:09 smithi019 bash[22501]: audit 2024-09-16T14:40:09.685576+0000 mon.a (mon.0) 841 : audit [DBG] from='client.? 172.21.15.19:0/609602967' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T14:40:10.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:09 smithi162 bash[23377]: audit 2024-09-16T14:40:09.685576+0000 mon.a (mon.0) 841 : audit [DBG] from='client.? 172.21.15.19:0/609602967' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T14:40:10.344 INFO:teuthology.orchestra.run.smithi019.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6800","nonce":1799766844},{"type":"v1","addr":"172.21.15.19:6801","nonce":1799766844}]},"active_addr":"172.21.15.19:6801/1799766844","active_change":"2024-09-16T14:32:18.731907+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":24104,"name":"b","mgr_features":4540138322906710015,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.19:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.19:0","nonce":3564599928}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.19:0","nonce":920755088}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.19:0","nonce":2696320383}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.19:0","nonce":2329699661}]}]} 2024-09-16T14:40:10.349 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-16T14:40:10.349 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-16T14:40:10.349 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T14:40:10.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:09 smithi139 bash[23309]: audit 2024-09-16T14:40:09.685576+0000 mon.a (mon.0) 841 : audit [DBG] from='client.? 172.21.15.19:0/609602967' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-16T14:40:11.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:10 smithi162 bash[23377]: cluster 2024-09-16T14:40:09.825917+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:11.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:10 smithi019 bash[22501]: cluster 2024-09-16T14:40:09.825917+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:11.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:10 smithi139 bash[23309]: cluster 2024-09-16T14:40:09.825917+0000 mgr.a (mgr.14150) 316 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:12.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:11 smithi162 bash[23377]: cluster 2024-09-16T14:40:11.826499+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:11 smithi019 bash[22501]: cluster 2024-09-16T14:40:11.826499+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:12.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:11 smithi139 bash[23309]: cluster 2024-09-16T14:40:11.826499+0000 mgr.a (mgr.14150) 317 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:15.034 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:15.167 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:14 smithi019 bash[22501]: cluster 2024-09-16T14:40:13.827098+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:15.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:14 smithi162 bash[23377]: cluster 2024-09-16T14:40:13.827098+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:15.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:14 smithi139 bash[23309]: cluster 2024-09-16T14:40:13.827098+0000 mgr.a (mgr.14150) 318 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:16.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:16 smithi139 bash[23309]: audit 2024-09-16T14:40:15.649117+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:16 smithi139 bash[23309]: audit 2024-09-16T14:40:15.659135+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:16 smithi139 bash[23309]: audit 2024-09-16T14:40:15.669514+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.851 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:16 smithi139 bash[23309]: cluster 2024-09-16T14:40:15.827595+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:16.902 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:16 smithi019 bash[22501]: audit 2024-09-16T14:40:15.649117+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.902 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:16 smithi019 bash[22501]: audit 2024-09-16T14:40:15.659135+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.902 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:16 smithi019 bash[22501]: audit 2024-09-16T14:40:15.669514+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.902 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:16 smithi019 bash[22501]: cluster 2024-09-16T14:40:15.827595+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:16.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:16 smithi162 bash[23377]: audit 2024-09-16T14:40:15.649117+0000 mon.a (mon.0) 842 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:16 smithi162 bash[23377]: audit 2024-09-16T14:40:15.659135+0000 mon.a (mon.0) 843 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:16 smithi162 bash[23377]: audit 2024-09-16T14:40:15.669514+0000 mon.a (mon.0) 844 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:16.931 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:16 smithi162 bash[23377]: cluster 2024-09-16T14:40:15.827595+0000 mgr.a (mgr.14150) 319 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:18 smithi162 bash[23377]: cluster 2024-09-16T14:40:17.828139+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:18 smithi162 bash[23377]: audit 2024-09-16T14:40:18.281200+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:18 smithi162 bash[23377]: audit 2024-09-16T14:40:18.287743+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:18 smithi162 bash[23377]: audit 2024-09-16T14:40:18.295337+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:18 smithi019 bash[22501]: cluster 2024-09-16T14:40:17.828139+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:18 smithi019 bash[22501]: audit 2024-09-16T14:40:18.281200+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:18 smithi019 bash[22501]: audit 2024-09-16T14:40:18.287743+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:18 smithi019 bash[22501]: audit 2024-09-16T14:40:18.295337+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:18 smithi139 bash[23309]: cluster 2024-09-16T14:40:17.828139+0000 mgr.a (mgr.14150) 320 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:19.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:18 smithi139 bash[23309]: audit 2024-09-16T14:40:18.281200+0000 mon.a (mon.0) 845 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:18 smithi139 bash[23309]: audit 2024-09-16T14:40:18.287743+0000 mon.a (mon.0) 846 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:18 smithi139 bash[23309]: audit 2024-09-16T14:40:18.295337+0000 mon.a (mon.0) 847 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:19.694 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:40:19.694 INFO:teuthology.orchestra.run.smithi019.stdout:{"epoch":45,"fsid":"130fbd00-7438-11ef-bceb-c7b262605968","created":"2024-09-16T14:31:20.198703+0000","modified":"2024-09-16T14:39:40.340411+0000","last_up_change":"2024-09-16T14:39:36.315740+0000","last_in_change":"2024-09-16T14:39:09.864721+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T14:37:03.373298+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8aae7e27-a44a-49c5-98f4-ccf095d19069","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6802","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6803","nonce":1527629402}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6804","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6805","nonce":1527629402}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6808","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6809","nonce":1527629402}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6806","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6807","nonce":1527629402}]},"public_addr":"172.21.15.19:6803/1527629402","cluster_addr":"172.21.15.19:6805/1527629402","heartbeat_back_addr":"172.21.15.19:6809/1527629402","heartbeat_front_addr":"172.21.15.19:6807/1527629402","state":["exists","up"]},{"osd":1,"uuid":"dd79196b-dedb-489c-84f8-451d64c1f50a","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.19:6810","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6811","nonce":3239863345}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6812","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6813","nonce":3239863345}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6816","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6817","nonce":3239863345}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6814","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6815","nonce":3239863345}]},"public_addr":"172.21.15.19:6811/3239863345","cluster_addr":"172.21.15.19:6813/3239863345","heartbeat_back_addr":"172.21.15.19:6817/3239863345","heartbeat_front_addr":"172.21.15.19:6815/3239863345","state":["exists","up"]},{"osd":2,"uuid":"59cbbdf8-ad43-417e-a459-ae7fab2b7faa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6800","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6801","nonce":3553431036}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6802","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6803","nonce":3553431036}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6806","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6807","nonce":3553431036}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6804","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6805","nonce":3553431036}]},"public_addr":"172.21.15.139:6801/3553431036","cluster_addr":"172.21.15.139:6803/3553431036","heartbeat_back_addr":"172.21.15.139:6807/3553431036","heartbeat_front_addr":"172.21.15.139:6805/3553431036","state":["exists","up"]},{"osd":3,"uuid":"be19cbd9-d6a3-4c01-9d13-9e871a2b5537","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6808","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6809","nonce":2629023439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6810","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6811","nonce":2629023439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6814","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6815","nonce":2629023439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6812","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6813","nonce":2629023439}]},"public_addr":"172.21.15.139:6809/2629023439","cluster_addr":"172.21.15.139:6811/2629023439","heartbeat_back_addr":"172.21.15.139:6815/2629023439","heartbeat_front_addr":"172.21.15.139:6813/2629023439","state":["exists","up"]},{"osd":4,"uuid":"b76bffe1-02a4-4de7-86f8-db74edee8aac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6800","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6801","nonce":2975529052}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6802","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6803","nonce":2975529052}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6806","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6807","nonce":2975529052}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6804","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6805","nonce":2975529052}]},"public_addr":"172.21.15.162:6801/2975529052","cluster_addr":"172.21.15.162:6803/2975529052","heartbeat_back_addr":"172.21.15.162:6807/2975529052","heartbeat_front_addr":"172.21.15.162:6805/2975529052","state":["exists","up"]},{"osd":5,"uuid":"a46c46c1-4974-402c-aec5-afec59f805c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6808","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6809","nonce":3026856133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6810","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6811","nonce":3026856133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6814","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6815","nonce":3026856133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6812","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6813","nonce":3026856133}]},"public_addr":"172.21.15.162:6809/3026856133","cluster_addr":"172.21.15.162:6811/3026856133","heartbeat_back_addr":"172.21.15.162:6815/3026856133","heartbeat_front_addr":"172.21.15.162:6813/3026856133","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:35:12.970821+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:36:08.763993+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:00.837139+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:51.531502+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:38:41.964465+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:39:35.034019+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.19:0/2082843895":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2635521321":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2605418762":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/4215708901":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/219409340":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/4237540784":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6801/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6801/98207886":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6800/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6800/98207886":"2024-09-17T14:31:47.163605+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-16T14:40:19.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:19 smithi019 bash[22501]: audit 2024-09-16T14:40:19.693407+0000 mon.a (mon.0) 848 : audit [DBG] from='client.? 172.21.15.19:0/1588191922' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:20.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:19 smithi162 bash[23377]: audit 2024-09-16T14:40:19.693407+0000 mon.a (mon.0) 848 : audit [DBG] from='client.? 172.21.15.19:0/1588191922' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:20.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:19 smithi139 bash[23309]: audit 2024-09-16T14:40:19.693407+0000 mon.a (mon.0) 848 : audit [DBG] from='client.? 172.21.15.19:0/1588191922' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:20.367 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-16T14:40:20.368 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-16T14:40:21.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:20 smithi162 bash[23377]: cluster 2024-09-16T14:40:19.828714+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:20 smithi019 bash[22501]: cluster 2024-09-16T14:40:19.828714+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:21.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:20 smithi139 bash[23309]: cluster 2024-09-16T14:40:19.828714+0000 mgr.a (mgr.14150) 321 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:23.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:22 smithi162 bash[23377]: cluster 2024-09-16T14:40:21.829225+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:23.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:22 smithi019 bash[22501]: cluster 2024-09-16T14:40:21.829225+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:23.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:22 smithi139 bash[23309]: cluster 2024-09-16T14:40:21.829225+0000 mgr.a (mgr.14150) 322 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:25.054 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:25.165 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:24 smithi162 bash[23377]: cluster 2024-09-16T14:40:23.829830+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:25.171 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:24 smithi019 bash[22501]: cluster 2024-09-16T14:40:23.829830+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:25.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:24 smithi139 bash[23309]: cluster 2024-09-16T14:40:23.829830+0000 mgr.a (mgr.14150) 323 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:27.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:26 smithi162 bash[23377]: cluster 2024-09-16T14:40:25.830357+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:27.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:26 smithi162 bash[23377]: audit 2024-09-16T14:40:26.762241+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:26 smithi162 bash[23377]: audit 2024-09-16T14:40:26.770929+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:26 smithi162 bash[23377]: audit 2024-09-16T14:40:26.780728+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:26 smithi019 bash[22501]: cluster 2024-09-16T14:40:25.830357+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:26 smithi019 bash[22501]: audit 2024-09-16T14:40:26.762241+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:26 smithi019 bash[22501]: audit 2024-09-16T14:40:26.770929+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:26 smithi019 bash[22501]: audit 2024-09-16T14:40:26.780728+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:26 smithi139 bash[23309]: cluster 2024-09-16T14:40:25.830357+0000 mgr.a (mgr.14150) 324 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:27.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:26 smithi139 bash[23309]: audit 2024-09-16T14:40:26.762241+0000 mon.a (mon.0) 849 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:26 smithi139 bash[23309]: audit 2024-09-16T14:40:26.770929+0000 mon.a (mon.0) 850 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:27.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:26 smithi139 bash[23309]: audit 2024-09-16T14:40:26.780728+0000 mon.a (mon.0) 851 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:28.319 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:40:28.320 INFO:teuthology.orchestra.run.smithi019.stdout:{"epoch":45,"fsid":"130fbd00-7438-11ef-bceb-c7b262605968","created":"2024-09-16T14:31:20.198703+0000","modified":"2024-09-16T14:39:40.340411+0000","last_up_change":"2024-09-16T14:39:36.315740+0000","last_in_change":"2024-09-16T14:39:09.864721+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-16T14:37:03.373298+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"21","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8aae7e27-a44a-49c5-98f4-ccf095d19069","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6802","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6803","nonce":1527629402}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6804","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6805","nonce":1527629402}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6808","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6809","nonce":1527629402}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6806","nonce":1527629402},{"type":"v1","addr":"172.21.15.19:6807","nonce":1527629402}]},"public_addr":"172.21.15.19:6803/1527629402","cluster_addr":"172.21.15.19:6805/1527629402","heartbeat_back_addr":"172.21.15.19:6809/1527629402","heartbeat_front_addr":"172.21.15.19:6807/1527629402","state":["exists","up"]},{"osd":1,"uuid":"dd79196b-dedb-489c-84f8-451d64c1f50a","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.19:6810","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6811","nonce":3239863345}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6812","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6813","nonce":3239863345}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6816","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6817","nonce":3239863345}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.19:6814","nonce":3239863345},{"type":"v1","addr":"172.21.15.19:6815","nonce":3239863345}]},"public_addr":"172.21.15.19:6811/3239863345","cluster_addr":"172.21.15.19:6813/3239863345","heartbeat_back_addr":"172.21.15.19:6817/3239863345","heartbeat_front_addr":"172.21.15.19:6815/3239863345","state":["exists","up"]},{"osd":2,"uuid":"59cbbdf8-ad43-417e-a459-ae7fab2b7faa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6800","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6801","nonce":3553431036}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6802","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6803","nonce":3553431036}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6806","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6807","nonce":3553431036}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6804","nonce":3553431036},{"type":"v1","addr":"172.21.15.139:6805","nonce":3553431036}]},"public_addr":"172.21.15.139:6801/3553431036","cluster_addr":"172.21.15.139:6803/3553431036","heartbeat_back_addr":"172.21.15.139:6807/3553431036","heartbeat_front_addr":"172.21.15.139:6805/3553431036","state":["exists","up"]},{"osd":3,"uuid":"be19cbd9-d6a3-4c01-9d13-9e871a2b5537","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6808","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6809","nonce":2629023439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6810","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6811","nonce":2629023439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6814","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6815","nonce":2629023439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.139:6812","nonce":2629023439},{"type":"v1","addr":"172.21.15.139:6813","nonce":2629023439}]},"public_addr":"172.21.15.139:6809/2629023439","cluster_addr":"172.21.15.139:6811/2629023439","heartbeat_back_addr":"172.21.15.139:6815/2629023439","heartbeat_front_addr":"172.21.15.139:6813/2629023439","state":["exists","up"]},{"osd":4,"uuid":"b76bffe1-02a4-4de7-86f8-db74edee8aac","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6800","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6801","nonce":2975529052}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6802","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6803","nonce":2975529052}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6806","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6807","nonce":2975529052}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6804","nonce":2975529052},{"type":"v1","addr":"172.21.15.162:6805","nonce":2975529052}]},"public_addr":"172.21.15.162:6801/2975529052","cluster_addr":"172.21.15.162:6803/2975529052","heartbeat_back_addr":"172.21.15.162:6807/2975529052","heartbeat_front_addr":"172.21.15.162:6805/2975529052","state":["exists","up"]},{"osd":5,"uuid":"a46c46c1-4974-402c-aec5-afec59f805c7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6808","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6809","nonce":3026856133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6810","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6811","nonce":3026856133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6814","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6815","nonce":3026856133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.162:6812","nonce":3026856133},{"type":"v1","addr":"172.21.15.162:6813","nonce":3026856133}]},"public_addr":"172.21.15.162:6809/3026856133","cluster_addr":"172.21.15.162:6811/3026856133","heartbeat_back_addr":"172.21.15.162:6815/3026856133","heartbeat_front_addr":"172.21.15.162:6813/3026856133","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:35:12.970821+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:36:08.763993+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:00.837139+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:37:51.531502+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:38:41.964465+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-16T14:39:35.034019+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.19:0/2082843895":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2635521321":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/2605418762":"2024-09-17T14:32:18.731577+0000","172.21.15.19:0/4215708901":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/219409340":"2024-09-17T14:31:47.163605+0000","172.21.15.19:0/4237540784":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6801/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6801/98207886":"2024-09-17T14:31:47.163605+0000","172.21.15.19:6800/2795353664":"2024-09-17T14:32:18.731577+0000","172.21.15.19:6800/98207886":"2024-09-17T14:31:47.163605+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-16T14:40:28.970 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-16T14:40:28.971 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-16T14:40:28.971 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-16T14:40:28.972 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-16T14:40:28.972 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-16T14:40:28.973 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-16T14:40:29.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:28 smithi162 bash[23377]: cluster 2024-09-16T14:40:27.831002+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:29.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:28 smithi162 bash[23377]: audit 2024-09-16T14:40:28.318655+0000 mon.a (mon.0) 852 : audit [DBG] from='client.? 172.21.15.19:0/222078527' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:29.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:28 smithi019 bash[22501]: cluster 2024-09-16T14:40:27.831002+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:28 smithi019 bash[22501]: audit 2024-09-16T14:40:28.318655+0000 mon.a (mon.0) 852 : audit [DBG] from='client.? 172.21.15.19:0/222078527' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:29.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:28 smithi139 bash[23309]: cluster 2024-09-16T14:40:27.831002+0000 mgr.a (mgr.14150) 325 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:29.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:28 smithi139 bash[23309]: audit 2024-09-16T14:40:28.318655+0000 mon.a (mon.0) 852 : audit [DBG] from='client.? 172.21.15.19:0/222078527' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-16T14:40:30.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:29 smithi162 bash[23377]: cluster 2024-09-16T14:40:29.831650+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:29 smithi019 bash[22501]: cluster 2024-09-16T14:40:29.831650+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:29 smithi139 bash[23309]: cluster 2024-09-16T14:40:29.831650+0000 mgr.a (mgr.14150) 326 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:33.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:32 smithi162 bash[23377]: cluster 2024-09-16T14:40:31.832239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:32 smithi019 bash[22501]: cluster 2024-09-16T14:40:31.832239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:33.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:32 smithi139 bash[23309]: cluster 2024-09-16T14:40:31.832239+0000 mgr.a (mgr.14150) 327 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:33.691 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:33.692 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:33.692 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:33.692 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:33.693 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:33.696 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:35.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:34 smithi162 bash[23377]: cluster 2024-09-16T14:40:33.832813+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:34 smithi019 bash[22501]: cluster 2024-09-16T14:40:33.832813+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:34 smithi139 bash[23309]: cluster 2024-09-16T14:40:33.832813+0000 mgr.a (mgr.14150) 328 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:37.062 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:36 smithi019 bash[22501]: cluster 2024-09-16T14:40:35.833312+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:37.062 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:36 smithi019 bash[22501]: audit 2024-09-16T14:40:35.874919+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.062 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:36 smithi019 bash[22501]: audit 2024-09-16T14:40:35.883847+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.062 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:36 smithi019 bash[22501]: audit 2024-09-16T14:40:35.895163+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.146 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:36 smithi139 bash[23309]: cluster 2024-09-16T14:40:35.833312+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:37.146 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:36 smithi139 bash[23309]: audit 2024-09-16T14:40:35.874919+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.147 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:36 smithi139 bash[23309]: audit 2024-09-16T14:40:35.883847+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.147 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:36 smithi139 bash[23309]: audit 2024-09-16T14:40:35.895163+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:36 smithi162 bash[23377]: cluster 2024-09-16T14:40:35.833312+0000 mgr.a (mgr.14150) 329 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:36 smithi162 bash[23377]: audit 2024-09-16T14:40:35.874919+0000 mon.a (mon.0) 853 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:36 smithi162 bash[23377]: audit 2024-09-16T14:40:35.883847+0000 mon.a (mon.0) 854 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:36 smithi162 bash[23377]: audit 2024-09-16T14:40:35.895163+0000 mon.a (mon.0) 855 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: cluster 2024-09-16T14:40:37.833898+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:37.975964+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:37.981195+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:37.983039+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:37.991843+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:38.479782+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:38.488479+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:38 smithi162 bash[23377]: audit 2024-09-16T14:40:38.497952+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: cluster 2024-09-16T14:40:37.833898+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:37.975964+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:37.981195+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:37.983039+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:37.991843+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:38.479782+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:38.488479+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:38 smithi139 bash[23309]: audit 2024-09-16T14:40:38.497952+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: cluster 2024-09-16T14:40:37.833898+0000 mgr.a (mgr.14150) 330 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:37.975964+0000 mon.a (mon.0) 856 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:37.981195+0000 mon.a (mon.0) 857 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:37.983039+0000 mon.a (mon.0) 858 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:37.991843+0000 mon.a (mon.0) 859 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:38.479782+0000 mon.a (mon.0) 860 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:38.488479+0000 mon.a (mon.0) 861 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:39.480 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:39 smithi019 bash[22501]: audit 2024-09-16T14:40:38.497952+0000 mon.a (mon.0) 862 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:41.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:40 smithi162 bash[23377]: cluster 2024-09-16T14:40:39.834443+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:41.219 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:40 smithi019 bash[22501]: cluster 2024-09-16T14:40:39.834443+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:41.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:40 smithi139 bash[23309]: cluster 2024-09-16T14:40:39.834443+0000 mgr.a (mgr.14150) 331 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:43.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:42 smithi162 bash[23377]: cluster 2024-09-16T14:40:41.834995+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:43.244 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:42 smithi019 bash[22501]: cluster 2024-09-16T14:40:41.834995+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:43.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:42 smithi139 bash[23309]: cluster 2024-09-16T14:40:41.834995+0000 mgr.a (mgr.14150) 332 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:45.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:44 smithi162 bash[23377]: cluster 2024-09-16T14:40:43.835540+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:45.202 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:44 smithi019 bash[22501]: cluster 2024-09-16T14:40:43.835540+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:45.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:44 smithi139 bash[23309]: cluster 2024-09-16T14:40:43.835540+0000 mgr.a (mgr.14150) 333 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:46.566 INFO:teuthology.orchestra.run.smithi019.stdout:107374182437 2024-09-16T14:40:46.567 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-16T14:40:46.930 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:46 smithi162 bash[23377]: cluster 2024-09-16T14:40:45.836118+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:46 smithi019 bash[22501]: cluster 2024-09-16T14:40:45.836118+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:47.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:46 smithi139 bash[23309]: cluster 2024-09-16T14:40:45.836118+0000 mgr.a (mgr.14150) 334 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:47.355 INFO:teuthology.orchestra.run.smithi019.stdout:176093659152 2024-09-16T14:40:47.356 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-16T14:40:48.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:47 smithi019 bash[22501]: audit 2024-09-16T14:40:46.966373+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:47 smithi019 bash[22501]: audit 2024-09-16T14:40:46.974152+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:47 smithi019 bash[22501]: audit 2024-09-16T14:40:46.984024+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:47 smithi019 bash[22501]: cluster 2024-09-16T14:40:47.836693+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:48.278 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:47 smithi162 bash[23377]: audit 2024-09-16T14:40:46.966373+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.279 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:47 smithi162 bash[23377]: audit 2024-09-16T14:40:46.974152+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.279 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:47 smithi162 bash[23377]: audit 2024-09-16T14:40:46.984024+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.279 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:47 smithi162 bash[23377]: cluster 2024-09-16T14:40:47.836693+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:48.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:47 smithi139 bash[23309]: audit 2024-09-16T14:40:46.966373+0000 mon.a (mon.0) 863 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:47 smithi139 bash[23309]: audit 2024-09-16T14:40:46.974152+0000 mon.a (mon.0) 864 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:47 smithi139 bash[23309]: audit 2024-09-16T14:40:46.984024+0000 mon.a (mon.0) 865 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:48.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:47 smithi139 bash[23309]: cluster 2024-09-16T14:40:47.836693+0000 mgr.a (mgr.14150) 335 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:48.951 INFO:teuthology.orchestra.run.smithi019.stdout:55834574905 2024-09-16T14:40:48.951 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-16T14:40:48.984 INFO:teuthology.orchestra.run.smithi019.stdout:77309411375 2024-09-16T14:40:48.984 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-16T14:40:49.106 INFO:teuthology.orchestra.run.smithi019.stdout:141733920795 2024-09-16T14:40:49.106 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-16T14:40:49.944 INFO:teuthology.orchestra.run.smithi019.stdout:34359738437 2024-09-16T14:40:49.945 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-16T14:40:51.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:50 smithi162 bash[23377]: cluster 2024-09-16T14:40:49.837365+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:50 smithi019 bash[22501]: cluster 2024-09-16T14:40:49.837365+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:51.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:50 smithi139 bash[23309]: cluster 2024-09-16T14:40:49.837365+0000 mgr.a (mgr.14150) 336 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:52.430 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:52.430 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:53.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:52 smithi162 bash[23377]: cluster 2024-09-16T14:40:51.837943+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:53.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:52 smithi019 bash[22501]: cluster 2024-09-16T14:40:51.837943+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:53.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:52 smithi139 bash[23309]: cluster 2024-09-16T14:40:51.837943+0000 mgr.a (mgr.14150) 337 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:53.439 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:53.440 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:53.440 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:54.452 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:40:55.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:54 smithi162 bash[23377]: cluster 2024-09-16T14:40:53.838482+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:55.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:54 smithi019 bash[22501]: cluster 2024-09-16T14:40:53.838482+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:54 smithi139 bash[23309]: cluster 2024-09-16T14:40:53.838482+0000 mgr.a (mgr.14150) 338 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:57.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:56 smithi162 bash[23377]: cluster 2024-09-16T14:40:55.839017+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:56 smithi162 bash[23377]: audit 2024-09-16T14:40:56.104302+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:56 smithi162 bash[23377]: audit 2024-09-16T14:40:56.112523+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:56 smithi162 bash[23377]: audit 2024-09-16T14:40:56.122277+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.194 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:56 smithi139 bash[23309]: cluster 2024-09-16T14:40:55.839017+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:57.194 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:56 smithi139 bash[23309]: audit 2024-09-16T14:40:56.104302+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.195 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:56 smithi139 bash[23309]: audit 2024-09-16T14:40:56.112523+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.195 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:56 smithi139 bash[23309]: audit 2024-09-16T14:40:56.122277+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.222 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:56 smithi019 bash[22501]: cluster 2024-09-16T14:40:55.839017+0000 mgr.a (mgr.14150) 339 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:57.222 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:56 smithi019 bash[22501]: audit 2024-09-16T14:40:56.104302+0000 mon.a (mon.0) 866 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.222 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:56 smithi019 bash[22501]: audit 2024-09-16T14:40:56.112523+0000 mon.a (mon.0) 867 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:57.222 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:56 smithi019 bash[22501]: audit 2024-09-16T14:40:56.122277+0000 mon.a (mon.0) 868 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:58 smithi139 bash[23309]: cluster 2024-09-16T14:40:57.839415+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:59.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:58 smithi139 bash[23309]: audit 2024-09-16T14:40:58.689500+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:58 smithi139 bash[23309]: audit 2024-09-16T14:40:58.696491+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:40:58 smithi139 bash[23309]: audit 2024-09-16T14:40:58.703492+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:58 smithi162 bash[23377]: cluster 2024-09-16T14:40:57.839415+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:58 smithi162 bash[23377]: audit 2024-09-16T14:40:58.689500+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:58 smithi162 bash[23377]: audit 2024-09-16T14:40:58.696491+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:40:58 smithi162 bash[23377]: audit 2024-09-16T14:40:58.703492+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:58 smithi019 bash[22501]: cluster 2024-09-16T14:40:57.839415+0000 mgr.a (mgr.14150) 340 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:40:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:58 smithi019 bash[22501]: audit 2024-09-16T14:40:58.689500+0000 mon.a (mon.0) 869 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:58 smithi019 bash[22501]: audit 2024-09-16T14:40:58.696491+0000 mon.a (mon.0) 870 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:40:59.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:40:58 smithi019 bash[22501]: audit 2024-09-16T14:40:58.703492+0000 mon.a (mon.0) 871 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:01.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:00 smithi162 bash[23377]: cluster 2024-09-16T14:40:59.840000+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:01.238 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:00 smithi019 bash[22501]: cluster 2024-09-16T14:40:59.840000+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:01.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:00 smithi139 bash[23309]: cluster 2024-09-16T14:40:59.840000+0000 mgr.a (mgr.14150) 341 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:01.978 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:01 smithi019 bash[22501]: cluster 2024-09-16T14:41:01.840397+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:02.041 INFO:teuthology.orchestra.run.smithi019.stdout:176093659155 2024-09-16T14:41:02.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:01 smithi139 bash[23309]: cluster 2024-09-16T14:41:01.840397+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:02.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:01 smithi162 bash[23377]: cluster 2024-09-16T14:41:01.840397+0000 mgr.a (mgr.14150) 342 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:03.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:02 smithi019 bash[22501]: audit 2024-09-16T14:41:02.040417+0000 mon.a (mon.0) 872 : audit [DBG] from='client.? 172.21.15.19:0/948980806' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T14:41:03.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:02 smithi139 bash[23309]: audit 2024-09-16T14:41:02.040417+0000 mon.a (mon.0) 872 : audit [DBG] from='client.? 172.21.15.19:0/948980806' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T14:41:03.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:02 smithi162 bash[23377]: audit 2024-09-16T14:41:02.040417+0000 mon.a (mon.0) 872 : audit [DBG] from='client.? 172.21.15.19:0/948980806' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-16T14:41:03.592 INFO:teuthology.orchestra.run.smithi019.stdout:107374182440 2024-09-16T14:41:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:03 smithi019 bash[22501]: audit 2024-09-16T14:41:03.591648+0000 mon.a (mon.0) 873 : audit [DBG] from='client.? 172.21.15.19:0/4249172925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T14:41:04.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:03 smithi019 bash[22501]: cluster 2024-09-16T14:41:03.841030+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:04.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:03 smithi139 bash[23309]: audit 2024-09-16T14:41:03.591648+0000 mon.a (mon.0) 873 : audit [DBG] from='client.? 172.21.15.19:0/4249172925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T14:41:04.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:03 smithi139 bash[23309]: cluster 2024-09-16T14:41:03.841030+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:04.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:03 smithi162 bash[23377]: audit 2024-09-16T14:41:03.591648+0000 mon.a (mon.0) 873 : audit [DBG] from='client.? 172.21.15.19:0/4249172925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-16T14:41:04.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:03 smithi162 bash[23377]: cluster 2024-09-16T14:41:03.841030+0000 mgr.a (mgr.14150) 343 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:04.734 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659152 got 176093659155 for osd.5 2024-09-16T14:41:04.734 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:04.878 INFO:teuthology.orchestra.run.smithi019.stdout:55834574909 2024-09-16T14:41:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:04 smithi019 bash[22501]: audit 2024-09-16T14:41:04.878628+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.19:0/1217701038' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T14:41:05.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:04 smithi139 bash[23309]: audit 2024-09-16T14:41:04.878628+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.19:0/1217701038' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T14:41:05.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:04 smithi162 bash[23377]: audit 2024-09-16T14:41:04.878628+0000 mon.a (mon.0) 874 : audit [DBG] from='client.? 172.21.15.19:0/1217701038' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-16T14:41:05.804 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182437 got 107374182440 for osd.3 2024-09-16T14:41:05.804 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:06.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:05 smithi019 bash[22501]: cluster 2024-09-16T14:41:05.841638+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:06.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:05 smithi139 bash[23309]: cluster 2024-09-16T14:41:05.841638+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:06.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:05 smithi162 bash[23377]: cluster 2024-09-16T14:41:05.841638+0000 mgr.a (mgr.14150) 344 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:06.862 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574905 got 55834574909 for osd.1 2024-09-16T14:41:06.862 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:07.025 INFO:teuthology.orchestra.run.smithi019.stdout:77309411379 2024-09-16T14:41:07.254 INFO:teuthology.orchestra.run.smithi019.stdout:34359738440 2024-09-16T14:41:07.302 INFO:teuthology.orchestra.run.smithi019.stdout:141733920799 2024-09-16T14:41:07.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.025417+0000 mon.a (mon.0) 875 : audit [DBG] from='client.? 172.21.15.19:0/41467837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T14:41:07.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.109938+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.116708+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.122046+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.254124+0000 mon.a (mon.0) 879 : audit [DBG] from='client.? 172.21.15.19:0/1224412759' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T14:41:07.601 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:07 smithi139 bash[23309]: audit 2024-09-16T14:41:07.302580+0000 mon.a (mon.0) 880 : audit [DBG] from='client.? 172.21.15.19:0/1604121568' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T14:41:07.680 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.025417+0000 mon.a (mon.0) 875 : audit [DBG] from='client.? 172.21.15.19:0/41467837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T14:41:07.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.109938+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.116708+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.122046+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.254124+0000 mon.a (mon.0) 879 : audit [DBG] from='client.? 172.21.15.19:0/1224412759' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T14:41:07.681 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:07 smithi162 bash[23377]: audit 2024-09-16T14:41:07.302580+0000 mon.a (mon.0) 880 : audit [DBG] from='client.? 172.21.15.19:0/1604121568' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.025417+0000 mon.a (mon.0) 875 : audit [DBG] from='client.? 172.21.15.19:0/41467837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.109938+0000 mon.a (mon.0) 876 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.116708+0000 mon.a (mon.0) 877 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.122046+0000 mon.a (mon.0) 878 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.254124+0000 mon.a (mon.0) 879 : audit [DBG] from='client.? 172.21.15.19:0/1224412759' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-16T14:41:07.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:07 smithi019 bash[22501]: audit 2024-09-16T14:41:07.302580+0000 mon.a (mon.0) 880 : audit [DBG] from='client.? 172.21.15.19:0/1604121568' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-16T14:41:08.670 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:08 smithi162 bash[23377]: cluster 2024-09-16T14:41:07.842223+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:08 smithi139 bash[23309]: cluster 2024-09-16T14:41:07.842223+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:08.962 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:08 smithi019 bash[22501]: cluster 2024-09-16T14:41:07.842223+0000 mgr.a (mgr.14150) 345 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:09.007 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411375 got 77309411379 for osd.2 2024-09-16T14:41:09.007 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:09.575 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738437 got 34359738440 for osd.0 2024-09-16T14:41:09.575 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:09.882 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920795 got 141733920799 for osd.4 2024-09-16T14:41:09.882 DEBUG:teuthology.parallel:result is None 2024-09-16T14:41:09.882 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-16T14:41:09.882 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T14:41:11.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:10 smithi162 bash[23377]: cluster 2024-09-16T14:41:09.842770+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:11.220 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:10 smithi019 bash[22501]: cluster 2024-09-16T14:41:09.842770+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:11.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:10 smithi139 bash[23309]: cluster 2024-09-16T14:41:09.842770+0000 mgr.a (mgr.14150) 346 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:13.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:12 smithi162 bash[23377]: cluster 2024-09-16T14:41:11.843326+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:13.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:12 smithi019 bash[22501]: cluster 2024-09-16T14:41:11.843326+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:13.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:12 smithi139 bash[23309]: cluster 2024-09-16T14:41:11.843326+0000 mgr.a (mgr.14150) 347 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:14.220 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:41:15.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:14 smithi162 bash[23377]: cluster 2024-09-16T14:41:13.843924+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:14 smithi019 bash[22501]: cluster 2024-09-16T14:41:13.843924+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:15.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:14 smithi139 bash[23309]: cluster 2024-09-16T14:41:13.843924+0000 mgr.a (mgr.14150) 348 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:17.174 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:16 smithi019 bash[22501]: cluster 2024-09-16T14:41:15.844498+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:17.175 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:16 smithi019 bash[22501]: audit 2024-09-16T14:41:16.330366+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.175 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:16 smithi019 bash[22501]: audit 2024-09-16T14:41:16.338773+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.175 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:16 smithi019 bash[22501]: audit 2024-09-16T14:41:16.348586+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:16 smithi162 bash[23377]: cluster 2024-09-16T14:41:15.844498+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:17.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:16 smithi162 bash[23377]: audit 2024-09-16T14:41:16.330366+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:16 smithi162 bash[23377]: audit 2024-09-16T14:41:16.338773+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:16 smithi162 bash[23377]: audit 2024-09-16T14:41:16.348586+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:16 smithi139 bash[23309]: cluster 2024-09-16T14:41:15.844498+0000 mgr.a (mgr.14150) 349 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:17.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:16 smithi139 bash[23309]: audit 2024-09-16T14:41:16.330366+0000 mon.a (mon.0) 881 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:16 smithi139 bash[23309]: audit 2024-09-16T14:41:16.338773+0000 mon.a (mon.0) 882 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:16 smithi139 bash[23309]: audit 2024-09-16T14:41:16.348586+0000 mon.a (mon.0) 883 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:17.465 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:41:17.466 INFO:teuthology.orchestra.run.smithi019.stderr:dumped all 2024-09-16T14:41:18.118 INFO:teuthology.orchestra.run.smithi019.stdout:{"pg_ready":true,"pg_map":{"version":305,"stamp":"2024-09-16T14:41:15.844239+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":166284,"kb_used_data":4132,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304628,"statfs":{"total":575970213888,"available":575799939072,"internally_reserved":0,"allocated":4231168,"data_stored":2731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9561,"internal_metadata":165927591},"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.003555"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":266,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-16T14:39:40.364689+0000","last_change":"2024-09-16T14:39:40.364139+0000","last_active":"2024-09-16T14:39:40.364689+0000","last_peered":"2024-09-16T14:39:40.364689+0000","last_clean":"2024-09-16T14:39:40.364689+0000","last_became_active":"2024-09-16T14:39:40.363005+0000","last_became_peered":"2024-09-16T14:39:40.363005+0000","last_unstale":"2024-09-16T14:39:40.364689+0000","last_undegraded":"2024-09-16T14:39:40.364689+0000","last_fullsized":"2024-09-16T14:39:40.364689+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T14:37:03.842418+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T14:37:03.842418+0000","last_clean_scrub_stamp":"2024-09-16T14:37:03.842418+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-17T16:41:48.483639+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":41,"seq":176093659158,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27996,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717156,"statfs":{"total":95995035648,"available":95966367744,"internally_reserved":0,"allocated":999424,"data_stored":750147,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"min":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":0.96299999999999997,"5min":0.96299999999999997,"15min":0.96299999999999997},"last":0.76200000000000001},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.079,"5min":1.079,"15min":1.079},"last":0.92500000000000004}]},{"osd":1,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.73199999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.91000000000000003,"5min":0.91000000000000003,"15min":0.91000000000000003},"last":0.65100000000000002},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":0.97099999999999997,"5min":0.97099999999999997,"15min":0.97099999999999997},"last":0.94699999999999995}]},{"osd":2,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.82299999999999995,"5min":0.82299999999999995,"15min":0.82299999999999995},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.05,"5min":1.05,"15min":1.05},"last":0.84999999999999998},{"interface":"front","average":{"1min":0.82799999999999996,"5min":0.82799999999999996,"15min":0.82799999999999996},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1220000000000001,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":0.67700000000000005}]},{"osd":3,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.85599999999999998,"5min":0.85599999999999998,"15min":0.85599999999999998},"min":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.0309999999999999,"5min":1.0309999999999999,"15min":1.0309999999999999},"last":0.79500000000000004},{"interface":"front","average":{"1min":0.84099999999999997,"5min":0.84099999999999997,"15min":0.84099999999999997},"min":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":0.89400000000000002}]},{"osd":4,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.879,"5min":0.879,"15min":0.879},"last":0.70399999999999996},{"interface":"front","average":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.95099999999999996,"5min":0.95099999999999996,"15min":0.95099999999999996},"last":0.59399999999999997}]}]},{"osd":4,"up_from":33,"seq":141733920801,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.74199999999999999,"15min":0.73699999999999999},"min":{"1min":0.57399999999999995,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.1160000000000001,"5min":1.1160000000000001,"15min":1.1160000000000001},"last":0.621},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.72899999999999998,"15min":0.73099999999999998},"min":{"1min":0.51500000000000001,"5min":0.498,"15min":0.498},"max":{"1min":1.115,"5min":1.115,"15min":1.115},"last":0.54800000000000004}]},{"osd":1,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.73499999999999999,"5min":0.71499999999999997,"15min":0.71199999999999997},"min":{"1min":0.53200000000000003,"5min":0.503,"15min":0.503},"max":{"1min":1.069,"5min":1.069,"15min":1.069},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.78000000000000003,"5min":0.78700000000000003,"15min":0.78800000000000003},"min":{"1min":0.61299999999999999,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":0.98999999999999999,"5min":1.008,"15min":1.008},"last":0.52900000000000003}]},{"osd":2,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.82199999999999995,"5min":0.80000000000000004,"15min":0.79600000000000004},"min":{"1min":0.63600000000000001,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.97099999999999997,"5min":0.98099999999999998,"15min":0.98099999999999998},"last":0.68700000000000006},{"interface":"front","average":{"1min":0.79400000000000004,"5min":0.79600000000000004,"15min":0.79600000000000004},"min":{"1min":0.52400000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.016,"5min":1.2030000000000001,"15min":1.2030000000000001},"last":0.59099999999999997}]},{"osd":3,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.78900000000000003,"5min":0.81200000000000006,"15min":0.81599999999999995},"min":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":0.97599999999999998,"5min":1.127,"15min":1.127},"last":0.67100000000000004},{"interface":"front","average":{"1min":0.84699999999999998,"5min":0.84299999999999997,"15min":0.84299999999999997},"min":{"1min":0.63900000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":0.97099999999999997,"5min":1.026,"15min":1.026},"last":0.71099999999999997}]},{"osd":5,"last update":"Mon Sep 16 14:40:37 2024","interfaces":[{"interface":"back","average":{"1min":0.83899999999999997,"5min":0.83899999999999997,"15min":0.83899999999999997},"min":{"1min":0.48399999999999999,"5min":0.48399999999999999,"15min":0.48399999999999999},"max":{"1min":1.0129999999999999,"5min":1.0129999999999999,"15min":1.0129999999999999},"last":0.73499999999999999},{"interface":"front","average":{"1min":0.81499999999999995,"5min":0.81499999999999995,"15min":0.81499999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.147,"5min":1.147,"15min":1.147},"last":0.72199999999999998}]}]},{"osd":3,"up_from":25,"seq":107374182443,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.76800000000000002,"5min":0.755,"15min":0.745},"min":{"1min":0.58299999999999996,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":0.91500000000000004,"5min":0.97599999999999998,"15min":0.97599999999999998},"last":0.80800000000000005},{"interface":"front","average":{"1min":0.77100000000000002,"5min":0.76900000000000002,"15min":0.76700000000000002},"min":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":0.94399999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"last":0.94699999999999995}]},{"osd":1,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.79800000000000004,"5min":0.79300000000000004,"15min":0.78600000000000003},"min":{"1min":0.63400000000000001,"5min":0.62,"15min":0.62},"max":{"1min":1.0009999999999999,"5min":1.0009999999999999,"15min":1.0009999999999999},"last":0.872},{"interface":"front","average":{"1min":0.76000000000000001,"5min":0.73799999999999999,"15min":0.73399999999999999},"min":{"1min":0.57699999999999996,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.0049999999999999,"5min":1.0049999999999999,"15min":1.0049999999999999},"last":0.88800000000000001}]},{"osd":2,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.72099999999999997,"5min":0.60799999999999998,"15min":0.57999999999999996},"min":{"1min":0.59199999999999997,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.50600000000000001},{"interface":"front","average":{"1min":0.71399999999999997,"5min":0.66200000000000003,"15min":0.64500000000000002},"min":{"1min":0.55700000000000005,"5min":0.46500000000000002,"15min":0.46500000000000002},"max":{"1min":0.92200000000000004,"5min":0.92200000000000004,"15min":0.92200000000000004},"last":0.52900000000000003}]},{"osd":4,"last update":"Mon Sep 16 14:40:47 2024","interfaces":[{"interface":"back","average":{"1min":0.89300000000000002,"5min":0.78800000000000003,"15min":0.77000000000000002},"min":{"1min":0.73799999999999999,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":1.0309999999999999,"5min":1.0309999999999999,"15min":1.0309999999999999},"last":0.72299999999999998},{"interface":"front","average":{"1min":0.82399999999999995,"5min":0.76000000000000001,"15min":0.75},"min":{"1min":0.73699999999999999,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.95299999999999996,"5min":0.95299999999999996,"15min":0.95299999999999996},"last":0.76200000000000001}]},{"osd":5,"last update":"Mon Sep 16 14:40:39 2024","interfaces":[{"interface":"back","average":{"1min":0.92500000000000004,"5min":0.92500000000000004,"15min":0.92500000000000004},"min":{"1min":0.78800000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.0680000000000001,"5min":1.0680000000000001,"15min":1.0680000000000001},"last":0.91700000000000004},{"interface":"front","average":{"1min":0.91800000000000004,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.077,"5min":1.077,"15min":1.077},"last":0.83599999999999997}]}]},{"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":28000,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":999424,"data_stored":750205,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:41:11 2024","interfaces":[{"interface":"back","average":{"1min":0.70399999999999996,"5min":0.72699999999999998,"15min":0.746},"min":{"1min":0.53100000000000003,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.97699999999999998,"5min":1.0469999999999999,"15min":1.0469999999999999},"last":0.71999999999999997},{"interface":"front","average":{"1min":0.70499999999999996,"5min":0.71099999999999997,"15min":0.71599999999999997},"min":{"1min":0.52600000000000002,"5min":0.5,"15min":0.5},"max":{"1min":0.86699999999999999,"5min":0.86699999999999999,"15min":0.86699999999999999},"last":0.83899999999999997}]},{"osd":1,"last update":"Mon Sep 16 14:41:11 2024","interfaces":[{"interface":"back","average":{"1min":0.71299999999999997,"5min":0.69999999999999996,"15min":0.70399999999999996},"min":{"1min":0.51600000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.90700000000000003,"5min":1.0549999999999999,"15min":1.0549999999999999},"last":0.751},{"interface":"front","average":{"1min":0.72899999999999998,"5min":0.76000000000000001,"15min":0.77200000000000002},"min":{"1min":0.502,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.96499999999999997,"5min":1.129,"15min":1.129},"last":0.96499999999999997}]},{"osd":3,"last update":"Mon Sep 16 14:41:01 2024","interfaces":[{"interface":"back","average":{"1min":0.68500000000000005,"5min":0.60299999999999998,"15min":0.58899999999999997},"min":{"1min":0.41699999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.85299999999999998,"5min":0.85299999999999998,"15min":0.85299999999999998},"last":0.88900000000000001},{"interface":"front","average":{"1min":0.70599999999999996,"5min":0.64200000000000002,"15min":0.63},"min":{"1min":0.54800000000000004,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.95799999999999996,"5min":0.95799999999999996,"15min":0.95799999999999996},"last":0.59099999999999997}]},{"osd":4,"last update":"Mon Sep 16 14:40:46 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.76500000000000001,"15min":0.76400000000000001},"min":{"1min":0.54300000000000004,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.69599999999999995},{"interface":"front","average":{"1min":0.875,"5min":0.83899999999999997,"15min":0.83299999999999996},"min":{"1min":0.61499999999999999,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.0600000000000001,"5min":1.0600000000000001,"15min":1.0600000000000001},"last":0.80300000000000005}]},{"osd":5,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.96499999999999997,"15min":0.96499999999999997},"min":{"1min":0.86599999999999999,"5min":0.86599999999999999,"15min":0.86599999999999999},"max":{"1min":1.0880000000000001,"5min":1.0880000000000001,"15min":1.0880000000000001},"last":1.0569999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.875,"15min":0.875},"min":{"1min":0.747,"5min":0.747,"15min":0.747},"max":{"1min":1.02,"5min":1.02,"15min":1.02},"last":0.77700000000000002}]}]},{"osd":1,"up_from":13,"seq":55834574911,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:16 2024","interfaces":[{"interface":"back","average":{"1min":0.54400000000000004,"5min":0.52800000000000002,"15min":0.51000000000000001},"min":{"1min":0.378,"5min":0.317,"15min":0.317},"max":{"1min":0.74199999999999999,"5min":0.74199999999999999,"15min":0.74199999999999999},"last":0.46600000000000003},{"interface":"front","average":{"1min":0.55100000000000005,"5min":0.52200000000000002,"15min":0.496},"min":{"1min":0.35099999999999998,"5min":0.311,"15min":0.311},"max":{"1min":0.63200000000000001,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.58999999999999997}]},{"osd":2,"last update":"Mon Sep 16 14:41:10 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.76500000000000001,"15min":0.746},"min":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.4410000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":0.67000000000000004},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.77400000000000002,"15min":0.748},"min":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"max":{"1min":1.5289999999999999,"5min":1.5289999999999999,"15min":1.5289999999999999},"last":0.95499999999999996}]},{"osd":3,"last update":"Mon Sep 16 14:40:57 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.82299999999999995,"15min":0.82899999999999996},"min":{"1min":0.622,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":1.4890000000000001,"5min":1.4890000000000001,"15min":1.4890000000000001},"last":0.72499999999999998},{"interface":"front","average":{"1min":0.80700000000000005,"5min":0.78500000000000003,"15min":0.78100000000000003},"min":{"1min":0.67400000000000004,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":0.98899999999999999,"5min":1.0529999999999999,"15min":1.0529999999999999},"last":0.75800000000000001}]},{"osd":4,"last update":"Mon Sep 16 14:40:50 2024","interfaces":[{"interface":"back","average":{"1min":0.94799999999999995,"5min":0.91600000000000004,"15min":0.91100000000000003},"min":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.6279999999999999,"5min":1.6279999999999999,"15min":1.6279999999999999},"last":0.91200000000000003},{"interface":"front","average":{"1min":0.93000000000000005,"5min":0.92600000000000005,"15min":0.92600000000000005},"min":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.1419999999999999,"5min":1.147,"15min":1.147},"last":1.1299999999999999}]},{"osd":5,"last update":"Mon Sep 16 14:40:37 2024","interfaces":[{"interface":"back","average":{"1min":0.89700000000000002,"5min":0.89700000000000002,"15min":0.89700000000000002},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.2070000000000001,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":1.0509999999999999},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"min":{"1min":0.68000000000000005,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":0.94699999999999995,"5min":0.94699999999999995,"15min":0.94699999999999995},"last":0.83899999999999997}]}]},{"osd":0,"up_from":8,"seq":34359738442,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Mon Sep 16 14:40:19 2024","interfaces":[{"interface":"back","average":{"1min":0.58299999999999996,"5min":0.57299999999999995,"15min":0.58699999999999997},"min":{"1min":0.251,"5min":0.251,"15min":0.251},"max":{"1min":0.85599999999999998,"5min":0.85599999999999998,"15min":0.85599999999999998},"last":0.50900000000000001},{"interface":"front","average":{"1min":0.61199999999999999,"5min":0.59499999999999997,"15min":0.60299999999999998},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":1.02,"5min":1.02,"15min":1.02},"last":0.67300000000000004}]},{"osd":2,"last update":"Mon Sep 16 14:40:10 2024","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.73599999999999999,"15min":0.71999999999999997},"min":{"1min":0.63700000000000001,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":0.93899999999999995,"5min":0.94999999999999996,"15min":0.94999999999999996},"last":0.91700000000000004},{"interface":"front","average":{"1min":0.75600000000000001,"5min":0.75700000000000001,"15min":0.75},"min":{"1min":0.53700000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.2709999999999999,"5min":1.2709999999999999,"15min":1.2709999999999999},"last":0.95999999999999996}]},{"osd":3,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.751,"5min":0.76500000000000001,"15min":0.76400000000000001},"min":{"1min":0.59899999999999998,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.042,"5min":1.042,"15min":1.042},"last":0.72799999999999998},{"interface":"front","average":{"1min":0.84999999999999998,"5min":0.83699999999999997,"15min":0.83799999999999997},"min":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.171,"5min":1.171,"15min":1.171},"last":0.82599999999999996}]},{"osd":4,"last update":"Mon Sep 16 14:40:45 2024","interfaces":[{"interface":"back","average":{"1min":0.81100000000000005,"5min":0.84499999999999997,"15min":0.85099999999999998},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.1020000000000001,"5min":1.1020000000000001,"15min":1.1020000000000001},"last":0.77800000000000002},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.85099999999999998,"15min":0.85699999999999998},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.0489999999999999,"5min":1.1799999999999999,"15min":1.1799999999999999},"last":0.876}]},{"osd":5,"last update":"Mon Sep 16 14:40:40 2024","interfaces":[{"interface":"back","average":{"1min":0.89500000000000002,"5min":0.89500000000000002,"15min":0.89500000000000002},"min":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"max":{"1min":1.095,"5min":1.095,"15min":1.095},"last":1.0009999999999999},{"interface":"front","average":{"1min":0.95299999999999996,"5min":0.95299999999999996,"15min":0.95299999999999996},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.3680000000000001,"5min":1.3680000000000001,"15min":1.3680000000000001},"last":1.042}]}]}],"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-16T14:41:18.119 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-16T14:41:19.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:18 smithi162 bash[23377]: audit 2024-09-16T14:41:17.460742+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14421 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:18 smithi162 bash[23377]: cluster 2024-09-16T14:41:17.845090+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:18 smithi162 bash[23377]: audit 2024-09-16T14:41:18.891342+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:18 smithi162 bash[23377]: audit 2024-09-16T14:41:18.899922+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:18 smithi162 bash[23377]: audit 2024-09-16T14:41:18.909936+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.204 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:18 smithi139 bash[23309]: audit 2024-09-16T14:41:17.460742+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14421 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:19.204 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:18 smithi139 bash[23309]: cluster 2024-09-16T14:41:17.845090+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:19.204 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:18 smithi139 bash[23309]: audit 2024-09-16T14:41:18.891342+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.204 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:18 smithi139 bash[23309]: audit 2024-09-16T14:41:18.899922+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.204 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:18 smithi139 bash[23309]: audit 2024-09-16T14:41:18.909936+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:18 smithi019 bash[22501]: audit 2024-09-16T14:41:17.460742+0000 mgr.a (mgr.14150) 350 : audit [DBG] from='client.14421 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:18 smithi019 bash[22501]: cluster 2024-09-16T14:41:17.845090+0000 mgr.a (mgr.14150) 351 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:18 smithi019 bash[22501]: audit 2024-09-16T14:41:18.891342+0000 mon.a (mon.0) 884 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:18 smithi019 bash[22501]: audit 2024-09-16T14:41:18.899922+0000 mon.a (mon.0) 885 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:19.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:18 smithi019 bash[22501]: audit 2024-09-16T14:41:18.909936+0000 mon.a (mon.0) 886 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:21.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:20 smithi162 bash[23377]: cluster 2024-09-16T14:41:19.845677+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:20 smithi019 bash[22501]: cluster 2024-09-16T14:41:19.845677+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:21.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:20 smithi139 bash[23309]: cluster 2024-09-16T14:41:19.845677+0000 mgr.a (mgr.14150) 352 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:22.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:21 smithi019 bash[22501]: cluster 2024-09-16T14:41:21.846209+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:22.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:21 smithi139 bash[23309]: cluster 2024-09-16T14:41:21.846209+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:22.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:21 smithi162 bash[23377]: cluster 2024-09-16T14:41:21.846209+0000 mgr.a (mgr.14150) 353 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:22.806 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:41:24.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:24 smithi019 bash[22501]: cluster 2024-09-16T14:41:23.846769+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:25.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:24 smithi162 bash[23377]: cluster 2024-09-16T14:41:23.846769+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:25.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:24 smithi139 bash[23309]: cluster 2024-09-16T14:41:23.846769+0000 mgr.a (mgr.14150) 354 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:27.157 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:26 smithi019 bash[22501]: cluster 2024-09-16T14:41:25.847263+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:27.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:26 smithi162 bash[23377]: cluster 2024-09-16T14:41:25.847263+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:26 smithi139 bash[23309]: cluster 2024-09-16T14:41:25.847263+0000 mgr.a (mgr.14150) 355 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:27.592 INFO:teuthology.orchestra.run.smithi019.stderr:dumped all 2024-09-16T14:41:27.593 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:41:28.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:28 smithi162 bash[23377]: audit 2024-09-16T14:41:27.260723+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:28 smithi162 bash[23377]: audit 2024-09-16T14:41:27.267318+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:28 smithi162 bash[23377]: audit 2024-09-16T14:41:27.272735+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:28 smithi162 bash[23377]: audit 2024-09-16T14:41:27.588235+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:28.431 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:28 smithi162 bash[23377]: cluster 2024-09-16T14:41:27.847816+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:28.495 INFO:teuthology.orchestra.run.smithi019.stdout:{"pg_ready":true,"pg_map":{"version":310,"stamp":"2024-09-16T14:41:25.847059+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":166284,"kb_used_data":4132,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304628,"statfs":{"total":575970213888,"available":575799939072,"internally_reserved":0,"allocated":4231168,"data_stored":2731160,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9561,"internal_metadata":165927591},"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.003424"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":266,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-16T14:39:40.364689+0000","last_change":"2024-09-16T14:39:40.364139+0000","last_active":"2024-09-16T14:39:40.364689+0000","last_peered":"2024-09-16T14:39:40.364689+0000","last_clean":"2024-09-16T14:39:40.364689+0000","last_became_active":"2024-09-16T14:39:40.363005+0000","last_became_peered":"2024-09-16T14:39:40.363005+0000","last_unstale":"2024-09-16T14:39:40.364689+0000","last_undegraded":"2024-09-16T14:39:40.364689+0000","last_fullsized":"2024-09-16T14:39:40.364689+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-16T14:37:03.842418+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-16T14:37:03.842418+0000","last_clean_scrub_stamp":"2024-09-16T14:37:03.842418+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-17T16:41:48.483639+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":41,"seq":176093659160,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27996,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717156,"statfs":{"total":95995035648,"available":95966367744,"internally_reserved":0,"allocated":999424,"data_stored":750147,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"min":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"max":{"1min":0.96299999999999997,"5min":0.96299999999999997,"15min":0.96299999999999997},"last":0.57999999999999996},{"interface":"front","average":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"min":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"max":{"1min":1.079,"5min":1.079,"15min":1.079},"last":0.54700000000000004}]},{"osd":1,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.73199999999999998,"5min":0.73199999999999998,"15min":0.73199999999999998},"min":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"max":{"1min":0.91000000000000003,"5min":0.91000000000000003,"15min":0.91000000000000003},"last":0.47299999999999998},{"interface":"front","average":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"min":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"max":{"1min":0.97099999999999997,"5min":0.97099999999999997,"15min":0.97099999999999997},"last":0.505}]},{"osd":2,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.82299999999999995,"5min":0.82299999999999995,"15min":0.82299999999999995},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.05,"5min":1.05,"15min":1.05},"last":0.77500000000000002},{"interface":"front","average":{"1min":0.82799999999999996,"5min":0.82799999999999996,"15min":0.82799999999999996},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.1220000000000001,"5min":1.1220000000000001,"15min":1.1220000000000001},"last":0.80700000000000005}]},{"osd":3,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.85599999999999998,"5min":0.85599999999999998,"15min":0.85599999999999998},"min":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.0309999999999999,"5min":1.0309999999999999,"15min":1.0309999999999999},"last":0.86199999999999999},{"interface":"front","average":{"1min":0.84099999999999997,"5min":0.84099999999999997,"15min":0.84099999999999997},"min":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":0.997,"5min":0.997,"15min":0.997},"last":0.71599999999999997}]},{"osd":4,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.879,"5min":0.879,"15min":0.879},"last":0.65400000000000003},{"interface":"front","average":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.95099999999999996,"5min":0.95099999999999996,"15min":0.95099999999999996},"last":0.68100000000000005}]}]},{"osd":4,"up_from":33,"seq":141733920803,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.74199999999999999,"15min":0.73699999999999999},"min":{"1min":0.57399999999999995,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.1160000000000001,"5min":1.1160000000000001,"15min":1.1160000000000001},"last":0.72399999999999998},{"interface":"front","average":{"1min":0.71599999999999997,"5min":0.72899999999999998,"15min":0.73099999999999998},"min":{"1min":0.51500000000000001,"5min":0.498,"15min":0.498},"max":{"1min":1.115,"5min":1.115,"15min":1.115},"last":0.76800000000000002}]},{"osd":1,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.73499999999999999,"5min":0.71499999999999997,"15min":0.71199999999999997},"min":{"1min":0.53200000000000003,"5min":0.503,"15min":0.503},"max":{"1min":1.069,"5min":1.069,"15min":1.069},"last":0.82099999999999995},{"interface":"front","average":{"1min":0.78000000000000003,"5min":0.78700000000000003,"15min":0.78800000000000003},"min":{"1min":0.61299999999999999,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":0.98999999999999999,"5min":1.008,"15min":1.008},"last":0.85599999999999998}]},{"osd":2,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.82199999999999995,"5min":0.80000000000000004,"15min":0.79600000000000004},"min":{"1min":0.63600000000000001,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.97099999999999997,"5min":0.98099999999999998,"15min":0.98099999999999998},"last":0.627},{"interface":"front","average":{"1min":0.79400000000000004,"5min":0.79600000000000004,"15min":0.79600000000000004},"min":{"1min":0.52400000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.016,"5min":1.2030000000000001,"15min":1.2030000000000001},"last":0.53300000000000003}]},{"osd":3,"last update":"Mon Sep 16 14:40:48 2024","interfaces":[{"interface":"back","average":{"1min":0.78900000000000003,"5min":0.81200000000000006,"15min":0.81599999999999995},"min":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"max":{"1min":0.97599999999999998,"5min":1.127,"15min":1.127},"last":0.94399999999999995},{"interface":"front","average":{"1min":0.84699999999999998,"5min":0.84299999999999997,"15min":0.84299999999999997},"min":{"1min":0.63900000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":0.97099999999999997,"5min":1.026,"15min":1.026},"last":0.92200000000000004}]},{"osd":5,"last update":"Mon Sep 16 14:40:37 2024","interfaces":[{"interface":"back","average":{"1min":0.83899999999999997,"5min":0.83899999999999997,"15min":0.83899999999999997},"min":{"1min":0.48399999999999999,"5min":0.48399999999999999,"15min":0.48399999999999999},"max":{"1min":1.0129999999999999,"5min":1.0129999999999999,"15min":1.0129999999999999},"last":0.96799999999999997},{"interface":"front","average":{"1min":0.81499999999999995,"5min":0.81499999999999995,"15min":0.81499999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":1.147,"5min":1.147,"15min":1.147},"last":0.89900000000000002}]}]},{"osd":3,"up_from":25,"seq":107374182445,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1003520,"data_stored":750478,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.76800000000000002,"5min":0.755,"15min":0.745},"min":{"1min":0.58299999999999996,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":0.91500000000000004,"5min":0.97599999999999998,"15min":0.97599999999999998},"last":0.86099999999999999},{"interface":"front","average":{"1min":0.77100000000000002,"5min":0.76900000000000002,"15min":0.76700000000000002},"min":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":0.94399999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"last":0.75600000000000001}]},{"osd":1,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.79800000000000004,"5min":0.79300000000000004,"15min":0.78600000000000003},"min":{"1min":0.63400000000000001,"5min":0.62,"15min":0.62},"max":{"1min":1.0009999999999999,"5min":1.0009999999999999,"15min":1.0009999999999999},"last":0.79300000000000004},{"interface":"front","average":{"1min":0.76000000000000001,"5min":0.73799999999999999,"15min":0.73399999999999999},"min":{"1min":0.57699999999999996,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.0049999999999999,"5min":1.0049999999999999,"15min":1.0049999999999999},"last":0.82099999999999995}]},{"osd":2,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.72099999999999997,"5min":0.60799999999999998,"15min":0.57999999999999996},"min":{"1min":0.59199999999999997,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.71399999999999997,"5min":0.66200000000000003,"15min":0.64500000000000002},"min":{"1min":0.55700000000000005,"5min":0.46500000000000002,"15min":0.46500000000000002},"max":{"1min":0.92200000000000004,"5min":0.92200000000000004,"15min":0.92200000000000004},"last":0.627}]},{"osd":4,"last update":"Mon Sep 16 14:40:47 2024","interfaces":[{"interface":"back","average":{"1min":0.89300000000000002,"5min":0.78800000000000003,"15min":0.77000000000000002},"min":{"1min":0.73799999999999999,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":1.0309999999999999,"5min":1.0309999999999999,"15min":1.0309999999999999},"last":0.89900000000000002},{"interface":"front","average":{"1min":0.82399999999999995,"5min":0.76000000000000001,"15min":0.75},"min":{"1min":0.73699999999999999,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.95299999999999996,"5min":0.95299999999999996,"15min":0.95299999999999996},"last":0.72599999999999998}]},{"osd":5,"last update":"Mon Sep 16 14:40:39 2024","interfaces":[{"interface":"back","average":{"1min":0.92500000000000004,"5min":0.92500000000000004,"15min":0.92500000000000004},"min":{"1min":0.78800000000000003,"5min":0.78800000000000003,"15min":0.78800000000000003},"max":{"1min":1.0680000000000001,"5min":1.0680000000000001,"15min":1.0680000000000001},"last":0.93500000000000005},{"interface":"front","average":{"1min":0.91800000000000004,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"max":{"1min":1.077,"5min":1.077,"15min":1.077},"last":0.96199999999999997}]}]},{"osd":2,"up_from":18,"seq":77309411383,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28000,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717152,"statfs":{"total":95995035648,"available":95966363648,"internally_reserved":0,"allocated":999424,"data_stored":750205,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:41:11 2024","interfaces":[{"interface":"back","average":{"1min":0.70399999999999996,"5min":0.72699999999999998,"15min":0.746},"min":{"1min":0.53100000000000003,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.97699999999999998,"5min":1.0469999999999999,"15min":1.0469999999999999},"last":0.90400000000000003},{"interface":"front","average":{"1min":0.70499999999999996,"5min":0.71099999999999997,"15min":0.71599999999999997},"min":{"1min":0.52600000000000002,"5min":0.5,"15min":0.5},"max":{"1min":0.86699999999999999,"5min":0.86699999999999999,"15min":0.86699999999999999},"last":0.57499999999999996}]},{"osd":1,"last update":"Mon Sep 16 14:41:11 2024","interfaces":[{"interface":"back","average":{"1min":0.71299999999999997,"5min":0.69999999999999996,"15min":0.70399999999999996},"min":{"1min":0.51600000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.90700000000000003,"5min":1.0549999999999999,"15min":1.0549999999999999},"last":0.68700000000000006},{"interface":"front","average":{"1min":0.72899999999999998,"5min":0.76000000000000001,"15min":0.77200000000000002},"min":{"1min":0.502,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.96499999999999997,"5min":1.129,"15min":1.129},"last":0.63200000000000001}]},{"osd":3,"last update":"Mon Sep 16 14:41:01 2024","interfaces":[{"interface":"back","average":{"1min":0.68500000000000005,"5min":0.60299999999999998,"15min":0.58899999999999997},"min":{"1min":0.41699999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.85299999999999998,"5min":0.85299999999999998,"15min":0.85299999999999998},"last":0.78200000000000003},{"interface":"front","average":{"1min":0.70599999999999996,"5min":0.64200000000000002,"15min":0.63},"min":{"1min":0.54800000000000004,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.95799999999999996,"5min":0.95799999999999996,"15min":0.95799999999999996},"last":0.752}]},{"osd":4,"last update":"Mon Sep 16 14:40:46 2024","interfaces":[{"interface":"back","average":{"1min":0.77300000000000002,"5min":0.76500000000000001,"15min":0.76400000000000001},"min":{"1min":0.54300000000000004,"5min":0.41999999999999998,"15min":0.41999999999999998},"max":{"1min":0.97399999999999998,"5min":0.97399999999999998,"15min":0.97399999999999998},"last":0.85999999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.83899999999999997,"15min":0.83299999999999996},"min":{"1min":0.61499999999999999,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.0600000000000001,"5min":1.0600000000000001,"15min":1.0600000000000001},"last":0.96399999999999997}]},{"osd":5,"last update":"Mon Sep 16 14:40:38 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.96499999999999997,"15min":0.96499999999999997},"min":{"1min":0.86599999999999999,"5min":0.86599999999999999,"15min":0.86599999999999999},"max":{"1min":1.0880000000000001,"5min":1.0880000000000001,"15min":1.0880000000000001},"last":1.0069999999999999},{"interface":"front","average":{"1min":0.875,"5min":0.875,"15min":0.875},"min":{"1min":0.747,"5min":0.747,"15min":0.747},"max":{"1min":1.02,"5min":1.02,"15min":1.02},"last":0.82799999999999996}]}]},{"osd":1,"up_from":13,"seq":55834574913,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27424,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717728,"statfs":{"total":95995035648,"available":95966953472,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Mon Sep 16 14:41:19 2024","interfaces":[{"interface":"back","average":{"1min":0.52600000000000002,"5min":0.53300000000000003,"15min":0.51200000000000001},"min":{"1min":0.33400000000000002,"5min":0.317,"15min":0.317},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.56200000000000006,"5min":0.53800000000000003,"15min":0.502},"min":{"1min":0.30199999999999999,"5min":0.30199999999999999,"15min":0.30199999999999999},"max":{"1min":0.76100000000000001,"5min":0.76100000000000001,"15min":0.76100000000000001},"last":0.51800000000000002}]},{"osd":2,"last update":"Mon Sep 16 14:41:10 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.76500000000000001,"15min":0.746},"min":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"max":{"1min":1.4410000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":0.81699999999999995},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.77400000000000002,"15min":0.748},"min":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"max":{"1min":1.5289999999999999,"5min":1.5289999999999999,"15min":1.5289999999999999},"last":0.85699999999999998}]},{"osd":3,"last update":"Mon Sep 16 14:40:57 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.82299999999999995,"15min":0.82899999999999996},"min":{"1min":0.622,"5min":0.52100000000000002,"15min":0.52100000000000002},"max":{"1min":1.4890000000000001,"5min":1.4890000000000001,"15min":1.4890000000000001},"last":0.91600000000000004},{"interface":"front","average":{"1min":0.80700000000000005,"5min":0.78500000000000003,"15min":0.78100000000000003},"min":{"1min":0.67400000000000004,"5min":0.58999999999999997,"15min":0.58999999999999997},"max":{"1min":0.98899999999999999,"5min":1.0529999999999999,"15min":1.0529999999999999},"last":0.98699999999999999}]},{"osd":4,"last update":"Mon Sep 16 14:40:50 2024","interfaces":[{"interface":"back","average":{"1min":0.94799999999999995,"5min":0.91600000000000004,"15min":0.91100000000000003},"min":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"max":{"1min":1.6279999999999999,"5min":1.6279999999999999,"15min":1.6279999999999999},"last":0.96899999999999997},{"interface":"front","average":{"1min":0.93000000000000005,"5min":0.92600000000000005,"15min":0.92600000000000005},"min":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"max":{"1min":1.1419999999999999,"5min":1.147,"15min":1.147},"last":1.1970000000000001}]},{"osd":5,"last update":"Mon Sep 16 14:40:37 2024","interfaces":[{"interface":"back","average":{"1min":0.89700000000000002,"5min":0.89700000000000002,"15min":0.89700000000000002},"min":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"max":{"1min":1.2070000000000001,"5min":1.2070000000000001,"15min":1.2070000000000001},"last":1.099},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"min":{"1min":0.68000000000000005,"5min":0.68000000000000005,"15min":0.68000000000000005},"max":{"1min":0.94699999999999995,"5min":0.94699999999999995,"15min":0.94699999999999995},"last":0.75700000000000001}]}]},{"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":27428,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":409600,"data_stored":160110,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Mon Sep 16 14:41:19 2024","interfaces":[{"interface":"back","average":{"1min":0.48399999999999999,"5min":0.55100000000000005,"15min":0.57899999999999996},"min":{"1min":0.30099999999999999,"5min":0.251,"15min":0.251},"max":{"1min":0.622,"5min":0.85599999999999998,"15min":0.85599999999999998},"last":0.5},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.58699999999999997,"15min":0.59999999999999998},"min":{"1min":0.32300000000000001,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.80000000000000004,"5min":1.02,"15min":1.02},"last":0.623}]},{"osd":2,"last update":"Mon Sep 16 14:41:14 2024","interfaces":[{"interface":"back","average":{"1min":0.77200000000000002,"5min":0.748,"15min":0.72399999999999998},"min":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"max":{"1min":0.92300000000000004,"5min":0.94999999999999996,"15min":0.94999999999999996},"last":0.67200000000000004},{"interface":"front","average":{"1min":0.80800000000000005,"5min":0.76900000000000002,"15min":0.754},"min":{"1min":0.58399999999999996,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.085,"5min":1.2709999999999999,"15min":1.2709999999999999},"last":0.70599999999999996}]},{"osd":3,"last update":"Mon Sep 16 14:40:55 2024","interfaces":[{"interface":"back","average":{"1min":0.751,"5min":0.76500000000000001,"15min":0.76400000000000001},"min":{"1min":0.59899999999999998,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.042,"5min":1.042,"15min":1.042},"last":0.60799999999999998},{"interface":"front","average":{"1min":0.84999999999999998,"5min":0.83699999999999997,"15min":0.83799999999999997},"min":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"max":{"1min":1.171,"5min":1.171,"15min":1.171},"last":0.752}]},{"osd":4,"last update":"Mon Sep 16 14:40:45 2024","interfaces":[{"interface":"back","average":{"1min":0.81100000000000005,"5min":0.84499999999999997,"15min":0.85099999999999998},"min":{"1min":0.46600000000000003,"5min":0.46600000000000003,"15min":0.46600000000000003},"max":{"1min":1.1020000000000001,"5min":1.1020000000000001,"15min":1.1020000000000001},"last":0.81899999999999995},{"interface":"front","average":{"1min":0.81599999999999995,"5min":0.85099999999999998,"15min":0.85699999999999998},"min":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"max":{"1min":1.0489999999999999,"5min":1.1799999999999999,"15min":1.1799999999999999},"last":0.85399999999999998}]},{"osd":5,"last update":"Mon Sep 16 14:40:40 2024","interfaces":[{"interface":"back","average":{"1min":0.89500000000000002,"5min":0.89500000000000002,"15min":0.89500000000000002},"min":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"max":{"1min":1.095,"5min":1.095,"15min":1.095},"last":0.91800000000000004},{"interface":"front","average":{"1min":0.95299999999999996,"5min":0.95299999999999996,"15min":0.95299999999999996},"min":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.3680000000000001,"5min":1.3680000000000001,"15min":1.3680000000000001},"last":0.88500000000000001}]}]}],"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-16T14:41:28.496 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-16T14:41:28.496 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-16T14:41:28.496 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-16T14:41:28.496 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-16T14:41:28.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:28 smithi139 bash[23309]: audit 2024-09-16T14:41:27.260723+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:28 smithi139 bash[23309]: audit 2024-09-16T14:41:27.267318+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:28 smithi139 bash[23309]: audit 2024-09-16T14:41:27.272735+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:28 smithi139 bash[23309]: audit 2024-09-16T14:41:27.588235+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:28.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:28 smithi139 bash[23309]: cluster 2024-09-16T14:41:27.847816+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:28.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:28 smithi019 bash[22501]: audit 2024-09-16T14:41:27.260723+0000 mon.a (mon.0) 887 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:28 smithi019 bash[22501]: audit 2024-09-16T14:41:27.267318+0000 mon.a (mon.0) 888 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:28 smithi019 bash[22501]: audit 2024-09-16T14:41:27.272735+0000 mon.a (mon.0) 889 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:28.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:28 smithi019 bash[22501]: audit 2024-09-16T14:41:27.588235+0000 mgr.a (mgr.14150) 356 : audit [DBG] from='client.14427 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:28.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:28 smithi019 bash[22501]: cluster 2024-09-16T14:41:27.847816+0000 mgr.a (mgr.14150) 357 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:31.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:30 smithi162 bash[23377]: cluster 2024-09-16T14:41:29.848372+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:31.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:30 smithi019 bash[22501]: cluster 2024-09-16T14:41:29.848372+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:31.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:30 smithi139 bash[23309]: cluster 2024-09-16T14:41:29.848372+0000 mgr.a (mgr.14150) 358 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:33.001 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:41:33.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:32 smithi162 bash[23377]: cluster 2024-09-16T14:41:31.848926+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:33.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:32 smithi019 bash[22501]: cluster 2024-09-16T14:41:31.848926+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:33.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:32 smithi139 bash[23309]: cluster 2024-09-16T14:41:31.848926+0000 mgr.a (mgr.14150) 359 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:35.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:34 smithi162 bash[23377]: cluster 2024-09-16T14:41:33.849539+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:34 smithi019 bash[22501]: cluster 2024-09-16T14:41:33.849539+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:34 smithi139 bash[23309]: cluster 2024-09-16T14:41:33.849539+0000 mgr.a (mgr.14150) 360 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:36.378 INFO:teuthology.orchestra.run.smithi019.stdout: 2024-09-16T14:41:36.379 INFO:teuthology.orchestra.run.smithi019.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-16T14:41:37.096 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-16T14:41:37.096 INFO:tasks.cephadm:Setup complete, yielding 2024-09-16T14:41:37.096 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-16T14:41:37.107 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi019.front.sepia.ceph.com 2024-09-16T14:41:37.107 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e4e227b37858f5109138494e01e5ba1ba7b8ffe8 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 130fbd00-7438-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> for host in $HOSTNAMES; do 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> # find the hostname for "host.c" which will have no mgr 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> HOST_C="${host}" 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> fi 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> done 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> # One last thing to worry about before draining the host 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> # is that the teuthology test tends to put the explicit 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> # hostnames in the placement for the mon service. 2024-09-16T14:41:37.108 DEBUG:teuthology.orchestra.run.smithi019:> # We want to make sure we can drain without providing 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # --force and there is a check for the host being removed 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # being listed explicitly in the placements. Therefore, 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # we should remove it from the mon placement. 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> ceph orch ls mon --export > mon.yaml 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> ceph orch apply -i mon_adjusted.yaml 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # now drain that host 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # wait for drain to complete 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> sleep 15 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> done 2024-09-16T14:41:37.109 DEBUG:teuthology.orchestra.run.smithi019:> # we want to check the ability to remove the host from 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # the CRUSH map, so we should first verify the host is in 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # the CRUSH map. 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> exit 1 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> fi 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # If the drain was successful, we should be able to remove the 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # host without force with no issues. If there are still daemons 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # we will get a response telling us to drain the host and a 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # non-zero return code 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-16T14:41:37.110 DEBUG:teuthology.orchestra.run.smithi019:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> sleep 30 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> ceph osd getcrushmap -o compiled-crushmap 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> exit 1 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> fi 2024-09-16T14:41:37.111 DEBUG:teuthology.orchestra.run.smithi019:> ' 2024-09-16T14:41:37.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:36 smithi162 bash[23377]: cluster 2024-09-16T14:41:35.850048+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:37.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:36 smithi162 bash[23377]: audit 2024-09-16T14:41:36.378283+0000 mon.a (mon.0) 890 : audit [DBG] from='client.? 172.21.15.19:0/2435528399' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T14:41:37.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:36 smithi162 bash[23377]: audit 2024-09-16T14:41:36.539617+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:36 smithi162 bash[23377]: audit 2024-09-16T14:41:36.549867+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:36 smithi162 bash[23377]: audit 2024-09-16T14:41:36.561400+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:36 smithi019 bash[22501]: cluster 2024-09-16T14:41:35.850048+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:36 smithi019 bash[22501]: audit 2024-09-16T14:41:36.378283+0000 mon.a (mon.0) 890 : audit [DBG] from='client.? 172.21.15.19:0/2435528399' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T14:41:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:36 smithi019 bash[22501]: audit 2024-09-16T14:41:36.539617+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:36 smithi019 bash[22501]: audit 2024-09-16T14:41:36.549867+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:36 smithi019 bash[22501]: audit 2024-09-16T14:41:36.561400+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:36 smithi139 bash[23309]: cluster 2024-09-16T14:41:35.850048+0000 mgr.a (mgr.14150) 361 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:37.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:36 smithi139 bash[23309]: audit 2024-09-16T14:41:36.378283+0000 mon.a (mon.0) 890 : audit [DBG] from='client.? 172.21.15.19:0/2435528399' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-16T14:41:37.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:36 smithi139 bash[23309]: audit 2024-09-16T14:41:36.539617+0000 mon.a (mon.0) 891 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:36 smithi139 bash[23309]: audit 2024-09-16T14:41:36.549867+0000 mon.a (mon.0) 892 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:37.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:36 smithi139 bash[23309]: audit 2024-09-16T14:41:36.561400+0000 mon.a (mon.0) 893 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:39.178 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:38 smithi139 bash[23309]: cluster 2024-09-16T14:41:37.850625+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:39.178 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:38 smithi139 bash[23309]: audit 2024-09-16T14:41:38.087164+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:41:39.178 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:38 smithi139 bash[23309]: audit 2024-09-16T14:41:38.092095+0000 mon.a (mon.0) 895 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:41:39.178 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:38 smithi139 bash[23309]: audit 2024-09-16T14:41:38.093845+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:41:39.179 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:38 smithi139 bash[23309]: audit 2024-09-16T14:41:38.104456+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:39.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:38 smithi162 bash[23377]: cluster 2024-09-16T14:41:37.850625+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:39.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:38 smithi162 bash[23377]: audit 2024-09-16T14:41:38.087164+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:41:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:38 smithi162 bash[23377]: audit 2024-09-16T14:41:38.092095+0000 mon.a (mon.0) 895 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:41:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:38 smithi162 bash[23377]: audit 2024-09-16T14:41:38.093845+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:41:39.181 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:38 smithi162 bash[23377]: audit 2024-09-16T14:41:38.104456+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:39.218 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:38 smithi019 bash[22501]: cluster 2024-09-16T14:41:37.850625+0000 mgr.a (mgr.14150) 362 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:39.218 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:38 smithi019 bash[22501]: audit 2024-09-16T14:41:38.087164+0000 mon.a (mon.0) 894 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:41:39.218 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:38 smithi019 bash[22501]: audit 2024-09-16T14:41:38.092095+0000 mon.a (mon.0) 895 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:41:39.218 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:38 smithi019 bash[22501]: audit 2024-09-16T14:41:38.093845+0000 mon.a (mon.0) 896 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:41:39.218 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:38 smithi019 bash[22501]: audit 2024-09-16T14:41:38.104456+0000 mon.a (mon.0) 897 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:40 smithi139 bash[23309]: audit 2024-09-16T14:41:39.062039+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:40 smithi139 bash[23309]: audit 2024-09-16T14:41:39.071348+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:40 smithi139 bash[23309]: audit 2024-09-16T14:41:39.081804+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.353 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:40 smithi139 bash[23309]: cluster 2024-09-16T14:41:39.851149+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:40.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:40 smithi162 bash[23377]: audit 2024-09-16T14:41:39.062039+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:40 smithi162 bash[23377]: audit 2024-09-16T14:41:39.071348+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:40 smithi162 bash[23377]: audit 2024-09-16T14:41:39.081804+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.430 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:40 smithi162 bash[23377]: cluster 2024-09-16T14:41:39.851149+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:40.478 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:40 smithi019 bash[22501]: audit 2024-09-16T14:41:39.062039+0000 mon.a (mon.0) 898 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:40 smithi019 bash[22501]: audit 2024-09-16T14:41:39.071348+0000 mon.a (mon.0) 899 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:40 smithi019 bash[22501]: audit 2024-09-16T14:41:39.081804+0000 mon.a (mon.0) 900 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:40.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:40 smithi019 bash[22501]: cluster 2024-09-16T14:41:39.851149+0000 mgr.a (mgr.14150) 363 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:42.900 INFO:teuthology.orchestra.run.smithi019.stderr:Inferring config /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/mon.a/config 2024-09-16T14:41:43.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:42 smithi162 bash[23377]: cluster 2024-09-16T14:41:41.851691+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:43.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:42 smithi019 bash[22501]: cluster 2024-09-16T14:41:41.851691+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:43.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:42 smithi139 bash[23309]: cluster 2024-09-16T14:41:41.851691+0000 mgr.a (mgr.14150) 364 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:45.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:44 smithi162 bash[23377]: cluster 2024-09-16T14:41:43.852211+0000 mgr.a (mgr.14150) 365 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:44 smithi019 bash[22501]: cluster 2024-09-16T14:41:43.852211+0000 mgr.a (mgr.14150) 365 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:45.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:44 smithi139 bash[23309]: cluster 2024-09-16T14:41:43.852211+0000 mgr.a (mgr.14150) 365 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:45.766 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch host ls --format json 2024-09-16T14:41:45.766 INFO:teuthology.orchestra.run.smithi019.stderr:++ jq -r '.[] | .hostname' 2024-09-16T14:41:46.065 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOSTNAMES='smithi019 2024-09-16T14:41:46.065 INFO:teuthology.orchestra.run.smithi019.stderr:smithi139 2024-09-16T14:41:46.065 INFO:teuthology.orchestra.run.smithi019.stderr:smithi162' 2024-09-16T14:41:46.065 INFO:teuthology.orchestra.run.smithi019.stderr:+ for host in $HOSTNAMES 2024-09-16T14:41:46.066 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi019 --format json 2024-09-16T14:41:46.066 INFO:teuthology.orchestra.run.smithi019.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T14:41:46.367 INFO:teuthology.orchestra.run.smithi019.stderr:+ HAS_MGRS=true 2024-09-16T14:41:46.368 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' true == false ']' 2024-09-16T14:41:46.368 INFO:teuthology.orchestra.run.smithi019.stderr:+ for host in $HOSTNAMES 2024-09-16T14:41:46.368 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi139 --format json 2024-09-16T14:41:46.368 INFO:teuthology.orchestra.run.smithi019.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T14:41:46.673 INFO:teuthology.orchestra.run.smithi019.stderr:+ HAS_MGRS=true 2024-09-16T14:41:46.674 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' true == false ']' 2024-09-16T14:41:46.674 INFO:teuthology.orchestra.run.smithi019.stderr:+ for host in $HOSTNAMES 2024-09-16T14:41:46.674 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 --format json 2024-09-16T14:41:46.674 INFO:teuthology.orchestra.run.smithi019.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-16T14:41:46.979 INFO:teuthology.orchestra.run.smithi019.stderr:+ HAS_MGRS=false 2024-09-16T14:41:46.979 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' false == false ']' 2024-09-16T14:41:46.979 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C=smithi162 2024-09-16T14:41:46.979 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph orch ls mon --export 2024-09-16T14:41:47.180 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:46 smithi162 bash[23377]: cluster 2024-09-16T14:41:45.852555+0000 mgr.a (mgr.14150) 366 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:47.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:46 smithi019 bash[22501]: cluster 2024-09-16T14:41:45.852555+0000 mgr.a (mgr.14150) 366 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:47.259 INFO:teuthology.orchestra.run.smithi019.stderr:+ sed /smithi162/d mon.yaml 2024-09-16T14:41:47.261 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-16T14:41:47.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:46 smithi139 bash[23309]: cluster 2024-09-16T14:41:45.852555+0000 mgr.a (mgr.14150) 366 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:47.578 INFO:teuthology.orchestra.run.smithi019.stdout:Scheduled mon update... 2024-09-16T14:41:47.592 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph orch host drain smithi162 --zap-osd-devices 2024-09-16T14:41:48.562 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:48 smithi162 systemd[1]: ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-16T14:41:49.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: audit 2024-09-16T14:41:46.959083+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:49.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: audit 2024-09-16T14:41:47.243624+0000 mgr.a (mgr.14150) 371 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: audit 2024-09-16T14:41:47.564966+0000 mgr.a (mgr.14150) 372 : audit [DBG] from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cephadm 2024-09-16T14:41:47.570748+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Saving service mon spec with placement smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;count:3 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cephadm 2024-09-16T14:41:47.596279+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cephadm 2024-09-16T14:41:47.596394+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cephadm 2024-09-16T14:41:47.597597+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Removing daemon mon.c from smithi162 -- ports [] 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: audit 2024-09-16T14:41:47.601930+0000 mon.a (mon.0) 912 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: audit 2024-09-16T14:41:47.602302+0000 mon.a (mon.0) 913 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:47.611278+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:47.853173+0000 mgr.a (mgr.14150) 377 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.602632+0000 mon.a (mon.0) 914 : cluster [INF] mon.a calling monitor election 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.626326+0000 mon.a (mon.0) 915 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T14:41:49.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.631320+0000 mon.a (mon.0) 916 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],b=[v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-16T14:41:49.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.650086+0000 mon.a (mon.0) 917 : cluster [DBG] fsmap 2024-09-16T14:41:49.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.650112+0000 mon.a (mon.0) 918 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T14:41:49.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.650570+0000 mon.a (mon.0) 919 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-16T14:41:49.981 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:49 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.650682+0000 mon.a (mon.0) 920 : cluster [INF] overall HEALTH_OK 2024-09-16T14:41:50.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: audit 2024-09-16T14:41:46.959083+0000 mgr.a (mgr.14150) 370 : audit [DBG] from='client.14457 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: audit 2024-09-16T14:41:47.243624+0000 mgr.a (mgr.14150) 371 : audit [DBG] from='client.14463 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: audit 2024-09-16T14:41:47.564966+0000 mgr.a (mgr.14150) 372 : audit [DBG] from='client.14469 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cephadm 2024-09-16T14:41:47.570748+0000 mgr.a (mgr.14150) 373 : cephadm [INF] Saving service mon spec with placement smithi019:172.21.15.19=a;smithi139:172.21.15.139=b;count:3 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cephadm 2024-09-16T14:41:47.596279+0000 mgr.a (mgr.14150) 374 : cephadm [INF] Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cephadm 2024-09-16T14:41:47.596394+0000 mgr.a (mgr.14150) 375 : cephadm [INF] Removing monitor c from monmap... 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cephadm 2024-09-16T14:41:47.597597+0000 mgr.a (mgr.14150) 376 : cephadm [INF] Removing daemon mon.c from smithi162 -- ports [] 2024-09-16T14:41:50.101 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: audit 2024-09-16T14:41:47.601930+0000 mon.a (mon.0) 912 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: audit 2024-09-16T14:41:47.602302+0000 mon.a (mon.0) 913 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:47.611278+0000 mon.b (mon.1) 16 : cluster [INF] mon.b calling monitor election 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:47.853173+0000 mgr.a (mgr.14150) 377 : cluster [DBG] pgmap v321: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.602632+0000 mon.a (mon.0) 914 : cluster [INF] mon.a calling monitor election 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.626326+0000 mon.a (mon.0) 915 : cluster [INF] mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.631320+0000 mon.a (mon.0) 916 : cluster [DBG] monmap e4: 2 mons at {a=[v2:172.21.15.19:3300/0,v1:172.21.15.19:6789/0],b=[v2:172.21.15.139:3300/0,v1:172.21.15.139:6789/0]} removed_ranks: {1} disallowed_leaders: {} 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.650086+0000 mon.a (mon.0) 917 : cluster [DBG] fsmap 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.650112+0000 mon.a (mon.0) 918 : cluster [DBG] osdmap e45: 6 total, 6 up, 6 in 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.650570+0000 mon.a (mon.0) 919 : cluster [DBG] mgrmap e15: a(active, since 9m), standbys: b 2024-09-16T14:41:50.102 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:49 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.650682+0000 mon.a (mon.0) 920 : cluster [INF] overall HEALTH_OK 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:Scheduled to remove the following daemons from host 'smithi162' 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:type id 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:-------------------- --------------- 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:agent smithi162 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:mon c 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:osd 4 2024-09-16T14:41:50.905 INFO:teuthology.orchestra.run.smithi019.stdout:osd 5 2024-09-16T14:41:50.918 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 2024-09-16T14:41:50.978 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:50 smithi019 bash[22501]: cluster 2024-09-16T14:41:49.853853+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:51.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:50 smithi139 bash[23309]: cluster 2024-09-16T14:41:49.853853+0000 mgr.a (mgr.14150) 378 : cluster [DBG] pgmap v322: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 14s ago 8m - - 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:mon.c smithi162 running (8m) 14s ago 8m 34.4M 2048M 18.2.4-845-ge4e227b3 67ddd33fa72f d8e1629ba64c 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 14s ago 3m 36.1M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 14s ago 2m 35.8M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 14s ago 8m - - 2024-09-16T14:41:51.225 INFO:teuthology.orchestra.run.smithi019.stderr:mon.c smithi162 running (8m) 14s ago 8m 34.4M 2048M 18.2.4-845-ge4e227b3 67ddd33fa72f d8e1629ba64c 2024-09-16T14:41:51.226 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 14s ago 3m 36.1M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:41:51.226 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 14s ago 2m 35.8M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' '!=' 'No daemons reported' ']' 2024-09-16T14:41:51.226 INFO:teuthology.orchestra.run.smithi019.stderr:+ sleep 15 2024-09-16T14:41:51.876 INFO:journalctl@ceph.mon.c.smithi162.stdout:Sep 16 14:41:51 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:41:51.877 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:41:51 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:41:51.877 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:41:51 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:50.884750+0000 mgr.a (mgr.14150) 379 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi162", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:50.891586+0000 mon.a (mon.0) 921 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: cephadm 2024-09-16T14:41:50.892279+0000 mgr.a (mgr.14150) 380 : cephadm [INF] Added label _no_schedule to host smithi162 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:50.897766+0000 mon.a (mon.0) 922 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: cephadm 2024-09-16T14:41:50.898293+0000 mgr.a (mgr.14150) 381 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi162 2024-09-16T14:41:52.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:50.900210+0000 mon.a (mon.0) 923 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: cephadm 2024-09-16T14:41:50.901546+0000 mgr.a (mgr.14150) 382 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:50.902970+0000 mon.a (mon.0) 924 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: cephadm 2024-09-16T14:41:50.904183+0000 mgr.a (mgr.14150) 383 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:51.701981+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:51.711408+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:51 smithi019 bash[22501]: audit 2024-09-16T14:41:51.797162+0000 mon.a (mon.0) 927 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:50.884750+0000 mgr.a (mgr.14150) 379 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi162", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:50.891586+0000 mon.a (mon.0) 921 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: cephadm 2024-09-16T14:41:50.892279+0000 mgr.a (mgr.14150) 380 : cephadm [INF] Added label _no_schedule to host smithi162 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:50.897766+0000 mon.a (mon.0) 922 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: cephadm 2024-09-16T14:41:50.898293+0000 mgr.a (mgr.14150) 381 : cephadm [INF] Added label SpecialHostLabels.DRAIN_CONF_KEYRING to host smithi162 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:50.900210+0000 mon.a (mon.0) 923 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T14:41:52.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: cephadm 2024-09-16T14:41:50.901546+0000 mgr.a (mgr.14150) 382 : cephadm [INF] osd.4 crush weight is 0.0872955322265625 2024-09-16T14:41:52.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:50.902970+0000 mon.a (mon.0) 924 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-09-16T14:41:52.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: cephadm 2024-09-16T14:41:50.904183+0000 mgr.a (mgr.14150) 383 : cephadm [INF] osd.5 crush weight is 0.0872955322265625 2024-09-16T14:41:52.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:51.701981+0000 mon.a (mon.0) 925 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:51.711408+0000 mon.a (mon.0) 926 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:52.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:51 smithi139 bash[23309]: audit 2024-09-16T14:41:51.797162+0000 mon.a (mon.0) 927 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:41:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:52 smithi019 bash[22501]: audit 2024-09-16T14:41:51.206996+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:52 smithi019 bash[22501]: cluster 2024-09-16T14:41:51.854537+0000 mgr.a (mgr.14150) 385 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:53.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:52 smithi139 bash[23309]: audit 2024-09-16T14:41:51.206996+0000 mgr.a (mgr.14150) 384 : audit [DBG] from='client.14476 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:41:53.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:52 smithi139 bash[23309]: cluster 2024-09-16T14:41:51.854537+0000 mgr.a (mgr.14150) 385 : cluster [DBG] pgmap v323: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:54.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:54 smithi019 bash[22501]: audit 2024-09-16T14:41:53.675602+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:54.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:54 smithi019 bash[22501]: cluster 2024-09-16T14:41:53.855154+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:55.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:54 smithi139 bash[23309]: audit 2024-09-16T14:41:53.675602+0000 mon.a (mon.0) 928 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:55.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:54 smithi139 bash[23309]: cluster 2024-09-16T14:41:53.855154+0000 mgr.a (mgr.14150) 386 : cluster [DBG] pgmap v324: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: cluster 2024-09-16T14:41:55.855674+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: audit 2024-09-16T14:41:56.750030+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: audit 2024-09-16T14:41:56.758118+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: audit 2024-09-16T14:41:56.768107+0000 mon.a (mon.0) 931 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: audit 2024-09-16T14:41:56.893506+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:56 smithi019 bash[22501]: audit 2024-09-16T14:41:56.900785+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: cluster 2024-09-16T14:41:55.855674+0000 mgr.a (mgr.14150) 387 : cluster [DBG] pgmap v325: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: audit 2024-09-16T14:41:56.750030+0000 mon.a (mon.0) 929 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: audit 2024-09-16T14:41:56.758118+0000 mon.a (mon.0) 930 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: audit 2024-09-16T14:41:56.768107+0000 mon.a (mon.0) 931 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: audit 2024-09-16T14:41:56.893506+0000 mon.a (mon.0) 932 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:57.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:56 smithi139 bash[23309]: audit 2024-09-16T14:41:56.900785+0000 mon.a (mon.0) 933 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:58 smithi019 bash[22501]: audit 2024-09-16T14:41:57.193058+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:58 smithi019 bash[22501]: audit 2024-09-16T14:41:57.199097+0000 mon.a (mon.0) 935 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:58.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:41:58 smithi019 bash[22501]: cluster 2024-09-16T14:41:57.856246+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:41:58.599 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:58 smithi139 bash[23309]: audit 2024-09-16T14:41:57.193058+0000 mon.a (mon.0) 934 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:58.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:58 smithi139 bash[23309]: audit 2024-09-16T14:41:57.199097+0000 mon.a (mon.0) 935 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:41:58.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:41:58 smithi139 bash[23309]: cluster 2024-09-16T14:41:57.856246+0000 mgr.a (mgr.14150) 388 : cluster [DBG] pgmap v326: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:00.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:00 smithi139 bash[23309]: audit 2024-09-16T14:41:59.226121+0000 mon.a (mon.0) 936 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:00 smithi139 bash[23309]: audit 2024-09-16T14:41:59.233984+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:00 smithi139 bash[23309]: audit 2024-09-16T14:41:59.241370+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:00 smithi139 bash[23309]: cluster 2024-09-16T14:41:59.856710+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:00.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:00 smithi019 bash[22501]: audit 2024-09-16T14:41:59.226121+0000 mon.a (mon.0) 936 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:00 smithi019 bash[22501]: audit 2024-09-16T14:41:59.233984+0000 mon.a (mon.0) 937 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:00 smithi019 bash[22501]: audit 2024-09-16T14:41:59.241370+0000 mon.a (mon.0) 938 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:00.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:00 smithi019 bash[22501]: cluster 2024-09-16T14:41:59.856710+0000 mgr.a (mgr.14150) 389 : cluster [DBG] pgmap v327: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:02.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:02 smithi139 bash[23309]: audit 2024-09-16T14:42:01.015777+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:02 smithi139 bash[23309]: audit 2024-09-16T14:42:01.023657+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:02 smithi139 bash[23309]: audit 2024-09-16T14:42:01.033326+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:02 smithi139 bash[23309]: cluster 2024-09-16T14:42:01.857217+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:02.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:02 smithi019 bash[22501]: audit 2024-09-16T14:42:01.015777+0000 mon.a (mon.0) 939 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:02 smithi019 bash[22501]: audit 2024-09-16T14:42:01.023657+0000 mon.a (mon.0) 940 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:02 smithi019 bash[22501]: audit 2024-09-16T14:42:01.033326+0000 mon.a (mon.0) 941 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:02.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:02 smithi019 bash[22501]: cluster 2024-09-16T14:42:01.857217+0000 mgr.a (mgr.14150) 390 : cluster [DBG] pgmap v328: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:05.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:04 smithi019 bash[22501]: cluster 2024-09-16T14:42:03.857819+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:05.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:04 smithi139 bash[23309]: cluster 2024-09-16T14:42:03.857819+0000 mgr.a (mgr.14150) 391 : cluster [DBG] pgmap v329: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:06.227 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 2024-09-16T14:42:06.536 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:42:06.536 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 5s ago 8m - - 2024-09-16T14:42:06.536 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 5s ago 3m 36.4M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:42:06.536 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 5s ago 2m 35.9M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' 2024-09-16T14:42:06.536 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:42:06.537 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 5s ago 8m - - 2024-09-16T14:42:06.537 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 5s ago 3m 36.4M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:42:06.537 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 5s ago 2m 35.9M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' '!=' 'No daemons reported' ']' 2024-09-16T14:42:06.537 INFO:teuthology.orchestra.run.smithi019.stderr:+ sleep 15 2024-09-16T14:42:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.855188+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:42:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: cluster 2024-09-16T14:42:05.858288+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:05.864081+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:05.871932+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:05.873683+0000 mon.a (mon.0) 944 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:05.875499+0000 mon.a (mon.0) 945 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.877828+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.878316+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.878694+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removing smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.047323+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.055080+0000 mon.a (mon.0) 947 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.268367+0000 mon.a (mon.0) 948 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.275781+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.283446+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.291133+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.293795+0000 mon.a (mon.0) 952 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.295482+0000 mon.a (mon.0) 953 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.296836+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T14:42:07.231 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:06 smithi019 bash[22501]: audit 2024-09-16T14:42:06.298055+0000 mon.a (mon.0) 955 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.855188+0000 mgr.a (mgr.14150) 392 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: cluster 2024-09-16T14:42:05.858288+0000 mgr.a (mgr.14150) 393 : cluster [DBG] pgmap v330: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:05.864081+0000 mon.a (mon.0) 942 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:05.871932+0000 mon.a (mon.0) 943 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:05.873683+0000 mon.a (mon.0) 944 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:07.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:05.875499+0000 mon.a (mon.0) 945 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.877828+0000 mgr.a (mgr.14150) 394 : cephadm [INF] Updating smithi019:/etc/ceph/ceph.conf 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.878316+0000 mgr.a (mgr.14150) 395 : cephadm [INF] Updating smithi139:/etc/ceph/ceph.conf 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.878694+0000 mgr.a (mgr.14150) 396 : cephadm [INF] Removing smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.047323+0000 mon.a (mon.0) 946 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.055080+0000 mon.a (mon.0) 947 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.268367+0000 mon.a (mon.0) 948 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.275781+0000 mon.a (mon.0) 949 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.283446+0000 mon.a (mon.0) 950 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.291133+0000 mon.a (mon.0) 951 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.293795+0000 mon.a (mon.0) 952 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.295482+0000 mon.a (mon.0) 953 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.296836+0000 mon.a (mon.0) 954 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T14:42:07.352 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:06 smithi139 bash[23309]: audit 2024-09-16T14:42:06.298055+0000 mon.a (mon.0) 955 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-09-16T14:42:07.687 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: debug 2024-09-16T14:42:07.301+0000 7f4a6de09640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2024-09-16T14:42:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.943512+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Removing smithi162:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:42:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: cephadm 2024-09-16T14:42:05.998746+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Removing smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:42:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: cephadm 2024-09-16T14:42:06.120508+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: cephadm 2024-09-16T14:42:06.120833+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:07.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:06.294032+0000 mgr.a (mgr.14150) 401 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:06.295649+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:06.297026+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:06.512736+0000 mgr.a (mgr.14150) 404 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.299627+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: cluster 2024-09-16T14:42:07.299756+0000 mon.a (mon.0) 957 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.302002+0000 mon.a (mon.0) 958 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.304794+0000 mon.a (mon.0) 959 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.307164+0000 mon.a (mon.0) 960 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.655223+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.662052+0000 mon.a (mon.0) 962 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:07.980 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:07 smithi019 bash[22501]: audit 2024-09-16T14:42:07.669229+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.943512+0000 mgr.a (mgr.14150) 397 : cephadm [INF] Removing smithi162:/etc/ceph/ceph.client.admin.keyring 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: cephadm 2024-09-16T14:42:05.998746+0000 mgr.a (mgr.14150) 398 : cephadm [INF] Removing smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: cephadm 2024-09-16T14:42:06.120508+0000 mgr.a (mgr.14150) 399 : cephadm [INF] Updating smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: cephadm 2024-09-16T14:42:06.120833+0000 mgr.a (mgr.14150) 400 : cephadm [INF] Updating smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:06.294032+0000 mgr.a (mgr.14150) 401 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:06.295649+0000 mgr.a (mgr.14150) 402 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:08.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:06.297026+0000 mgr.a (mgr.14150) 403 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:06.512736+0000 mgr.a (mgr.14150) 404 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.299627+0000 mon.a (mon.0) 956 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: cluster 2024-09-16T14:42:07.299756+0000 mon.a (mon.0) 957 : cluster [DBG] osdmap e46: 6 total, 6 up, 6 in 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.302002+0000 mon.a (mon.0) 958 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.304794+0000 mon.a (mon.0) 959 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.307164+0000 mon.a (mon.0) 960 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.655223+0000 mon.a (mon.0) 961 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.662052+0000 mon.a (mon.0) 962 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:08.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:07 smithi139 bash[23309]: audit 2024-09-16T14:42:07.669229+0000 mon.a (mon.0) 963 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: cephadm 2024-09-16T14:42:07.301121+0000 mgr.a (mgr.14150) 405 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: audit 2024-09-16T14:42:07.302367+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: audit 2024-09-16T14:42:07.305120+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: cluster 2024-09-16T14:42:07.858809+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v332: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: cluster 2024-09-16T14:42:08.293218+0000 mon.a (mon.0) 964 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: audit 2024-09-16T14:42:08.300365+0000 mon.a (mon.0) 965 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T14:42:09.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:08 smithi019 bash[22501]: cluster 2024-09-16T14:42:08.300531+0000 mon.a (mon.0) 966 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: cephadm 2024-09-16T14:42:07.301121+0000 mgr.a (mgr.14150) 405 : cephadm [INF] osd.5 weight is now 0.0 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: audit 2024-09-16T14:42:07.302367+0000 mgr.a (mgr.14150) 406 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: audit 2024-09-16T14:42:07.305120+0000 mgr.a (mgr.14150) 407 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: cluster 2024-09-16T14:42:07.858809+0000 mgr.a (mgr.14150) 408 : cluster [DBG] pgmap v332: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: cluster 2024-09-16T14:42:08.293218+0000 mon.a (mon.0) 964 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: audit 2024-09-16T14:42:08.300365+0000 mon.a (mon.0) 965 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-16T14:42:09.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:08 smithi139 bash[23309]: cluster 2024-09-16T14:42:08.300531+0000 mon.a (mon.0) 966 : cluster [DBG] osdmap e47: 6 total, 5 up, 6 in 2024-09-16T14:42:10.225 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:09 smithi019 bash[22501]: cephadm 2024-09-16T14:42:08.301876+0000 mgr.a (mgr.14150) 409 : cephadm [INF] osd.4 now down 2024-09-16T14:42:10.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:09 smithi019 bash[22501]: cephadm 2024-09-16T14:42:08.302450+0000 mgr.a (mgr.14150) 410 : cephadm [INF] Removing daemon osd.4 from smithi162 -- ports [] 2024-09-16T14:42:10.226 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:09 smithi019 bash[22501]: cluster 2024-09-16T14:42:09.302568+0000 mon.a (mon.0) 967 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T14:42:10.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:09 smithi139 bash[23309]: cephadm 2024-09-16T14:42:08.301876+0000 mgr.a (mgr.14150) 409 : cephadm [INF] osd.4 now down 2024-09-16T14:42:10.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:09 smithi139 bash[23309]: cephadm 2024-09-16T14:42:08.302450+0000 mgr.a (mgr.14150) 410 : cephadm [INF] Removing daemon osd.4 from smithi162 -- ports [] 2024-09-16T14:42:10.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:09 smithi139 bash[23309]: cluster 2024-09-16T14:42:09.302568+0000 mon.a (mon.0) 967 : cluster [DBG] osdmap e48: 6 total, 5 up, 6 in 2024-09-16T14:42:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:10 smithi019 bash[22501]: cluster 2024-09-16T14:42:09.859336+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v335: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:11.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:10 smithi019 bash[22501]: cluster 2024-09-16T14:42:10.310487+0000 mon.a (mon.0) 968 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T14:42:11.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:10 smithi139 bash[23309]: cluster 2024-09-16T14:42:09.859336+0000 mgr.a (mgr.14150) 411 : cluster [DBG] pgmap v335: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:11.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:10 smithi139 bash[23309]: cluster 2024-09-16T14:42:10.310487+0000 mon.a (mon.0) 968 : cluster [DBG] osdmap e49: 6 total, 5 up, 6 in 2024-09-16T14:42:12.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:11 smithi019 bash[22501]: cluster 2024-09-16T14:42:11.072882+0000 mon.a (mon.0) 969 : cluster [INF] osd.4 marked itself dead as of e49 2024-09-16T14:42:12.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:11 smithi139 bash[23309]: cluster 2024-09-16T14:42:11.072882+0000 mon.a (mon.0) 969 : cluster [INF] osd.4 marked itself dead as of e49 2024-09-16T14:42:12.430 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:11 smithi162 bash[29680]: debug 2024-09-16T14:42:11.966+0000 7f7888b60640 -1 osd.4 50 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T14:42:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:12 smithi019 bash[22501]: cluster 2024-09-16T14:42:11.076128+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-16T14:42:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:12 smithi019 bash[22501]: cluster 2024-09-16T14:42:11.076141+0000 osd.4 (osd.4) 4 : cluster [DBG] map e49 wrongly marked me down at e47 2024-09-16T14:42:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:12 smithi019 bash[22501]: cluster 2024-09-16T14:42:11.859869+0000 mgr.a (mgr.14150) 412 : cluster [DBG] pgmap v337: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:13.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:12 smithi019 bash[22501]: cluster 2024-09-16T14:42:11.888128+0000 mon.a (mon.0) 970 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-16T14:42:13.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:12 smithi139 bash[23309]: cluster 2024-09-16T14:42:11.076128+0000 osd.4 (osd.4) 3 : cluster [WRN] Monitor daemon marked osd.4 down, but it is still running 2024-09-16T14:42:13.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:12 smithi139 bash[23309]: cluster 2024-09-16T14:42:11.076141+0000 osd.4 (osd.4) 4 : cluster [DBG] map e49 wrongly marked me down at e47 2024-09-16T14:42:13.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:12 smithi139 bash[23309]: cluster 2024-09-16T14:42:11.859869+0000 mgr.a (mgr.14150) 412 : cluster [DBG] pgmap v337: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-16T14:42:13.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:12 smithi139 bash[23309]: cluster 2024-09-16T14:42:11.888128+0000 mon.a (mon.0) 970 : cluster [DBG] osdmap e50: 6 total, 5 up, 6 in 2024-09-16T14:42:13.430 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:13 smithi162 systemd[1]: Stopping Ceph osd.4 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:42:13.430 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:13 smithi162 bash[29680]: debug 2024-09-16T14:42:13.242+0000 7f788dd4f640 -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-16T14:42:13.430 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:13 smithi162 bash[29680]: debug 2024-09-16T14:42:13.242+0000 7f788dd4f640 -1 osd.4 51 *** Got signal Terminated *** 2024-09-16T14:42:13.431 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:13 smithi162 bash[29680]: debug 2024-09-16T14:42:13.242+0000 7f788dd4f640 -1 osd.4 51 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: cluster 2024-09-16T14:42:12.882278+0000 mon.a (mon.0) 971 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: cluster 2024-09-16T14:42:12.882330+0000 mon.a (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: cluster 2024-09-16T14:42:12.891479+0000 mon.a (mon.0) 973 : cluster [INF] osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052] boot 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: cluster 2024-09-16T14:42:12.891560+0000 mon.a (mon.0) 974 : cluster [DBG] osdmap e51: 6 total, 6 up, 6 in 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: audit 2024-09-16T14:42:12.892208+0000 mon.a (mon.0) 975 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:42:14.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:13 smithi019 bash[22501]: cluster 2024-09-16T14:42:13.243759+0000 mon.a (mon.0) 976 : cluster [INF] osd.4 marked itself down and dead 2024-09-16T14:42:14.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: cluster 2024-09-16T14:42:12.882278+0000 mon.a (mon.0) 971 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:14.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: cluster 2024-09-16T14:42:12.882330+0000 mon.a (mon.0) 972 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:14.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: cluster 2024-09-16T14:42:12.891479+0000 mon.a (mon.0) 973 : cluster [INF] osd.4 [v2:172.21.15.162:6800/2975529052,v1:172.21.15.162:6801/2975529052] boot 2024-09-16T14:42:14.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: cluster 2024-09-16T14:42:12.891560+0000 mon.a (mon.0) 974 : cluster [DBG] osdmap e51: 6 total, 6 up, 6 in 2024-09-16T14:42:14.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: audit 2024-09-16T14:42:12.892208+0000 mon.a (mon.0) 975 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-16T14:42:14.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:13 smithi139 bash[23309]: cluster 2024-09-16T14:42:13.243759+0000 mon.a (mon.0) 976 : cluster [INF] osd.4 marked itself down and dead 2024-09-16T14:42:15.148 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:14 smithi162 bash[38867]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-4 2024-09-16T14:42:15.148 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:15 smithi162 bash[38932]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-4 2024-09-16T14:42:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:14 smithi019 bash[22501]: cluster 2024-09-16T14:42:13.860525+0000 mgr.a (mgr.14150) 413 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean+remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T14:42:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:14 smithi019 bash[22501]: cluster 2024-09-16T14:42:13.895856+0000 mon.a (mon.0) 977 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:14 smithi019 bash[22501]: cluster 2024-09-16T14:42:13.914592+0000 mon.a (mon.0) 978 : cluster [DBG] osdmap e52: 6 total, 5 up, 6 in 2024-09-16T14:42:15.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:14 smithi139 bash[23309]: cluster 2024-09-16T14:42:13.860525+0000 mgr.a (mgr.14150) 413 : cluster [DBG] pgmap v340: 1 pgs: 1 active+clean+remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T14:42:15.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:14 smithi139 bash[23309]: cluster 2024-09-16T14:42:13.895856+0000 mon.a (mon.0) 977 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:15.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:14 smithi139 bash[23309]: cluster 2024-09-16T14:42:13.914592+0000 mon.a (mon.0) 978 : cluster [DBG] osdmap e52: 6 total, 5 up, 6 in 2024-09-16T14:42:16.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:15 smithi019 bash[22501]: cluster 2024-09-16T14:42:14.914697+0000 mon.a (mon.0) 979 : cluster [DBG] osdmap e53: 6 total, 5 up, 6 in 2024-09-16T14:42:16.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:15 smithi139 bash[23309]: cluster 2024-09-16T14:42:14.914697+0000 mon.a (mon.0) 979 : cluster [DBG] osdmap e53: 6 total, 5 up, 6 in 2024-09-16T14:42:17.130 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:17 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:42:17.130 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:16 smithi162 systemd[1]: ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-16T14:42:17.130 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:16 smithi162 systemd[1]: Stopped Ceph osd.4 for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:42:17.130 INFO:journalctl@ceph.osd.4.smithi162.stdout:Sep 16 14:42:17 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:42:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:16 smithi019 bash[22501]: cluster 2024-09-16T14:42:15.861107+0000 mgr.a (mgr.14150) 414 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean+remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T14:42:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:16 smithi019 bash[22501]: cluster 2024-09-16T14:42:15.936857+0000 mon.a (mon.0) 980 : cluster [DBG] osdmap e54: 6 total, 5 up, 6 in 2024-09-16T14:42:17.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:16 smithi139 bash[23309]: cluster 2024-09-16T14:42:15.861107+0000 mgr.a (mgr.14150) 414 : cluster [DBG] pgmap v343: 1 pgs: 1 active+clean+remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 2/6 objects misplaced (33.333%) 2024-09-16T14:42:17.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:16 smithi139 bash[23309]: cluster 2024-09-16T14:42:15.936857+0000 mon.a (mon.0) 980 : cluster [DBG] osdmap e54: 6 total, 5 up, 6 in 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cephadm 2024-09-16T14:42:17.184872+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Removing key for osd.4 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: audit 2024-09-16T14:42:17.185587+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: audit 2024-09-16T14:42:17.194129+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cephadm 2024-09-16T14:42:17.195442+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Successfully removed osd.4 on smithi162 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: audit 2024-09-16T14:42:17.196087+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cluster 2024-09-16T14:42:17.197349+0000 mon.a (mon.0) 984 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cluster 2024-09-16T14:42:17.197393+0000 mon.a (mon.0) 985 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: audit 2024-09-16T14:42:17.205558+0000 mon.a (mon.0) 986 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T14:42:18.223 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cluster 2024-09-16T14:42:17.205708+0000 mon.a (mon.0) 987 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-16T14:42:18.224 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cephadm 2024-09-16T14:42:17.207052+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Successfully purged osd.4 on smithi162 2024-09-16T14:42:18.224 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cephadm 2024-09-16T14:42:17.207225+0000 mgr.a (mgr.14150) 418 : cephadm [INF] Zapping devices for osd.4 on smithi162 2024-09-16T14:42:18.224 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:17 smithi019 bash[22501]: cluster 2024-09-16T14:42:17.861626+0000 mgr.a (mgr.14150) 419 : cluster [DBG] pgmap v346: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:18.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cephadm 2024-09-16T14:42:17.184872+0000 mgr.a (mgr.14150) 415 : cephadm [INF] Removing key for osd.4 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: audit 2024-09-16T14:42:17.185587+0000 mon.a (mon.0) 981 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: audit 2024-09-16T14:42:17.194129+0000 mon.a (mon.0) 982 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cephadm 2024-09-16T14:42:17.195442+0000 mgr.a (mgr.14150) 416 : cephadm [INF] Successfully removed osd.4 on smithi162 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: audit 2024-09-16T14:42:17.196087+0000 mon.a (mon.0) 983 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cluster 2024-09-16T14:42:17.197349+0000 mon.a (mon.0) 984 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cluster 2024-09-16T14:42:17.197393+0000 mon.a (mon.0) 985 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: audit 2024-09-16T14:42:17.205558+0000 mon.a (mon.0) 986 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cluster 2024-09-16T14:42:17.205708+0000 mon.a (mon.0) 987 : cluster [DBG] osdmap e55: 5 total, 5 up, 5 in 2024-09-16T14:42:18.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cephadm 2024-09-16T14:42:17.207052+0000 mgr.a (mgr.14150) 417 : cephadm [INF] Successfully purged osd.4 on smithi162 2024-09-16T14:42:18.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cephadm 2024-09-16T14:42:17.207225+0000 mgr.a (mgr.14150) 418 : cephadm [INF] Zapping devices for osd.4 on smithi162 2024-09-16T14:42:18.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:17 smithi139 bash[23309]: cluster 2024-09-16T14:42:17.861626+0000 mgr.a (mgr.14150) 419 : cluster [DBG] pgmap v346: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:19.478 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:19 smithi019 bash[22501]: cluster 2024-09-16T14:42:18.213211+0000 mon.a (mon.0) 988 : cluster [DBG] osdmap e56: 5 total, 5 up, 5 in 2024-09-16T14:42:19.599 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:19 smithi139 bash[23309]: cluster 2024-09-16T14:42:18.213211+0000 mon.a (mon.0) 988 : cluster [DBG] osdmap e56: 5 total, 5 up, 5 in 2024-09-16T14:42:20.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:20 smithi019 bash[22501]: cluster 2024-09-16T14:42:19.214630+0000 mon.a (mon.0) 989 : cluster [DBG] osdmap e57: 5 total, 5 up, 5 in 2024-09-16T14:42:20.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:20 smithi019 bash[22501]: audit 2024-09-16T14:42:19.437882+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:20 smithi019 bash[22501]: audit 2024-09-16T14:42:19.446396+0000 mon.a (mon.0) 991 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:20 smithi019 bash[22501]: audit 2024-09-16T14:42:19.456425+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:20 smithi019 bash[22501]: cluster 2024-09-16T14:42:19.862170+0000 mgr.a (mgr.14150) 420 : cluster [DBG] pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:20.599 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:20 smithi139 bash[23309]: cluster 2024-09-16T14:42:19.214630+0000 mon.a (mon.0) 989 : cluster [DBG] osdmap e57: 5 total, 5 up, 5 in 2024-09-16T14:42:20.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:20 smithi139 bash[23309]: audit 2024-09-16T14:42:19.437882+0000 mon.a (mon.0) 990 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:20 smithi139 bash[23309]: audit 2024-09-16T14:42:19.446396+0000 mon.a (mon.0) 991 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:20 smithi139 bash[23309]: audit 2024-09-16T14:42:19.456425+0000 mon.a (mon.0) 992 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:20.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:20 smithi139 bash[23309]: cluster 2024-09-16T14:42:19.862170+0000 mgr.a (mgr.14150) 420 : cluster [DBG] pgmap v349: 1 pgs: 1 remapped+peering; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:21.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:21 smithi139 bash[23309]: cluster 2024-09-16T14:42:20.235877+0000 mon.a (mon.0) 993 : cluster [DBG] osdmap e58: 5 total, 5 up, 5 in 2024-09-16T14:42:21.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:21 smithi139 bash[23309]: audit 2024-09-16T14:42:21.187120+0000 mon.a (mon.0) 994 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:21 smithi139 bash[23309]: audit 2024-09-16T14:42:21.197692+0000 mon.a (mon.0) 995 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:21 smithi139 bash[23309]: audit 2024-09-16T14:42:21.208560+0000 mon.a (mon.0) 996 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.539 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 2024-09-16T14:42:21.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:21 smithi019 bash[22501]: cluster 2024-09-16T14:42:20.235877+0000 mon.a (mon.0) 993 : cluster [DBG] osdmap e58: 5 total, 5 up, 5 in 2024-09-16T14:42:21.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:21 smithi019 bash[22501]: audit 2024-09-16T14:42:21.187120+0000 mon.a (mon.0) 994 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:21 smithi019 bash[22501]: audit 2024-09-16T14:42:21.197692+0000 mon.a (mon.0) 995 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:21 smithi019 bash[22501]: audit 2024-09-16T14:42:21.208560+0000 mon.a (mon.0) 996 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 0s ago 8m - - 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 0s ago 3m 36.4M 4096M 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 0s ago 2m 35.9M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-16T14:42:21.855 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 0s ago 8m - - 2024-09-16T14:42:21.856 INFO:teuthology.orchestra.run.smithi019.stderr:osd.4 smithi162 running (3m) 0s ago 3m 36.4M 4096M 18.2.4-845-ge4e227b3 67ddd33fa72f afcd4f7b41b3 2024-09-16T14:42:21.856 INFO:teuthology.orchestra.run.smithi019.stderr:osd.5 smithi162 running (2m) 0s ago 2m 35.9M 19.8G 18.2.4-845-ge4e227b3 67ddd33fa72f 75b6885968c4 ' '!=' 'No daemons reported' ']' 2024-09-16T14:42:21.856 INFO:teuthology.orchestra.run.smithi019.stderr:+ sleep 15 2024-09-16T14:42:22.599 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:22 smithi139 bash[23309]: cluster 2024-09-16T14:42:21.237502+0000 mon.a (mon.0) 997 : cluster [DBG] osdmap e59: 5 total, 5 up, 5 in 2024-09-16T14:42:22.599 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:22 smithi139 bash[23309]: audit 2024-09-16T14:42:21.831199+0000 mgr.a (mgr.14150) 421 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:22.600 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:22 smithi139 bash[23309]: cluster 2024-09-16T14:42:21.862708+0000 mgr.a (mgr.14150) 422 : cluster [DBG] pgmap v352: 1 pgs: 1 remapped+peering; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:22 smithi019 bash[22501]: cluster 2024-09-16T14:42:21.237502+0000 mon.a (mon.0) 997 : cluster [DBG] osdmap e59: 5 total, 5 up, 5 in 2024-09-16T14:42:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:22 smithi019 bash[22501]: audit 2024-09-16T14:42:21.831199+0000 mgr.a (mgr.14150) 421 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:22 smithi019 bash[22501]: cluster 2024-09-16T14:42:21.862708+0000 mgr.a (mgr.14150) 422 : cluster [DBG] pgmap v352: 1 pgs: 1 remapped+peering; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:24 smithi019 bash[22501]: cluster 2024-09-16T14:42:23.863324+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-16T14:42:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:24 smithi019 bash[22501]: audit 2024-09-16T14:42:24.353396+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:24 smithi019 bash[22501]: audit 2024-09-16T14:42:24.363140+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:24 smithi019 bash[22501]: audit 2024-09-16T14:42:24.374063+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:24 smithi139 bash[23309]: cluster 2024-09-16T14:42:23.863324+0000 mgr.a (mgr.14150) 423 : cluster [DBG] pgmap v353: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-16T14:42:25.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:24 smithi139 bash[23309]: audit 2024-09-16T14:42:24.353396+0000 mon.a (mon.0) 998 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:24 smithi139 bash[23309]: audit 2024-09-16T14:42:24.363140+0000 mon.a (mon.0) 999 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:24 smithi139 bash[23309]: audit 2024-09-16T14:42:24.374063+0000 mon.a (mon.0) 1000 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:25.936 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:25 smithi019 bash[22501]: debug 2024-09-16T14:42:25.677+0000 7f4a6de09640 -1 mon.a@0(leader).osd e59 definitely_dead 0 2024-09-16T14:42:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:25 smithi019 bash[22501]: audit 2024-09-16T14:42:25.677663+0000 mon.a (mon.0) 1001 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:25 smithi019 bash[22501]: audit 2024-09-16T14:42:25.680580+0000 mon.a (mon.0) 1002 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T14:42:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:25 smithi019 bash[22501]: audit 2024-09-16T14:42:25.683029+0000 mon.a (mon.0) 1003 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T14:42:26.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:25 smithi139 bash[23309]: audit 2024-09-16T14:42:25.677663+0000 mon.a (mon.0) 1001 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:26.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:25 smithi139 bash[23309]: audit 2024-09-16T14:42:25.680580+0000 mon.a (mon.0) 1002 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T14:42:26.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:25 smithi139 bash[23309]: audit 2024-09-16T14:42:25.683029+0000 mon.a (mon.0) 1003 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cephadm 2024-09-16T14:42:25.676998+0000 mgr.a (mgr.14150) 424 : cephadm [INF] Successfully zapped devices for osd.4 on smithi162 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: audit 2024-09-16T14:42:25.678060+0000 mgr.a (mgr.14150) 425 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: audit 2024-09-16T14:42:25.680961+0000 mgr.a (mgr.14150) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cluster 2024-09-16T14:42:25.863890+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cluster 2024-09-16T14:42:25.926601+0000 mon.a (mon.0) 1004 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:27.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cluster 2024-09-16T14:42:25.926655+0000 mon.a (mon.0) 1005 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T14:42:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: audit 2024-09-16T14:42:25.943523+0000 mon.a (mon.0) 1006 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T14:42:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cluster 2024-09-16T14:42:25.943642+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e60: 5 total, 4 up, 5 in 2024-09-16T14:42:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cephadm 2024-09-16T14:42:25.944840+0000 mgr.a (mgr.14150) 428 : cephadm [INF] osd.5 now down 2024-09-16T14:42:27.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:26 smithi019 bash[22501]: cephadm 2024-09-16T14:42:25.945389+0000 mgr.a (mgr.14150) 429 : cephadm [INF] Removing daemon osd.5 from smithi162 -- ports [] 2024-09-16T14:42:27.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cephadm 2024-09-16T14:42:25.676998+0000 mgr.a (mgr.14150) 424 : cephadm [INF] Successfully zapped devices for osd.4 on smithi162 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: audit 2024-09-16T14:42:25.678060+0000 mgr.a (mgr.14150) 425 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: audit 2024-09-16T14:42:25.680961+0000 mgr.a (mgr.14150) 426 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cluster 2024-09-16T14:42:25.863890+0000 mgr.a (mgr.14150) 427 : cluster [DBG] pgmap v354: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cluster 2024-09-16T14:42:25.926601+0000 mon.a (mon.0) 1004 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cluster 2024-09-16T14:42:25.926655+0000 mon.a (mon.0) 1005 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: audit 2024-09-16T14:42:25.943523+0000 mon.a (mon.0) 1006 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cluster 2024-09-16T14:42:25.943642+0000 mon.a (mon.0) 1007 : cluster [DBG] osdmap e60: 5 total, 4 up, 5 in 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cephadm 2024-09-16T14:42:25.944840+0000 mgr.a (mgr.14150) 428 : cephadm [INF] osd.5 now down 2024-09-16T14:42:27.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:26 smithi139 bash[23309]: cephadm 2024-09-16T14:42:25.945389+0000 mgr.a (mgr.14150) 429 : cephadm [INF] Removing daemon osd.5 from smithi162 -- ports [] 2024-09-16T14:42:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:27 smithi019 bash[22501]: cluster 2024-09-16T14:42:27.683593+0000 mon.a (mon.0) 1008 : cluster [INF] osd.5 marked itself dead as of e60 2024-09-16T14:42:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:27 smithi019 bash[22501]: cluster 2024-09-16T14:42:27.864503+0000 mgr.a (mgr.14150) 430 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T14:42:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:27 smithi019 bash[22501]: audit 2024-09-16T14:42:27.900643+0000 mon.a (mon.0) 1009 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:27 smithi019 bash[22501]: audit 2024-09-16T14:42:27.909939+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:27 smithi019 bash[22501]: audit 2024-09-16T14:42:27.919462+0000 mon.a (mon.0) 1011 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:27 smithi139 bash[23309]: cluster 2024-09-16T14:42:27.683593+0000 mon.a (mon.0) 1008 : cluster [INF] osd.5 marked itself dead as of e60 2024-09-16T14:42:28.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:27 smithi139 bash[23309]: cluster 2024-09-16T14:42:27.864503+0000 mgr.a (mgr.14150) 430 : cluster [DBG] pgmap v356: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-16T14:42:28.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:27 smithi139 bash[23309]: audit 2024-09-16T14:42:27.900643+0000 mon.a (mon.0) 1009 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:27 smithi139 bash[23309]: audit 2024-09-16T14:42:27.909939+0000 mon.a (mon.0) 1010 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:27 smithi139 bash[23309]: audit 2024-09-16T14:42:27.919462+0000 mon.a (mon.0) 1011 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:28.680 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:28 smithi162 bash[33449]: debug 2024-09-16T14:42:28.230+0000 7fb34758d640 -1 osd.5 61 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-16T14:42:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:28 smithi019 bash[22501]: cluster 2024-09-16T14:42:27.686917+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-16T14:42:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:28 smithi019 bash[22501]: cluster 2024-09-16T14:42:27.686936+0000 osd.5 (osd.5) 4 : cluster [DBG] map e60 wrongly marked me down at e60 2024-09-16T14:42:29.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:28 smithi019 bash[22501]: cluster 2024-09-16T14:42:27.952412+0000 mon.a (mon.0) 1012 : cluster [DBG] osdmap e61: 5 total, 4 up, 5 in 2024-09-16T14:42:29.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:28 smithi139 bash[23309]: cluster 2024-09-16T14:42:27.686917+0000 osd.5 (osd.5) 3 : cluster [WRN] Monitor daemon marked osd.5 down, but it is still running 2024-09-16T14:42:29.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:28 smithi139 bash[23309]: cluster 2024-09-16T14:42:27.686936+0000 osd.5 (osd.5) 4 : cluster [DBG] map e60 wrongly marked me down at e60 2024-09-16T14:42:29.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:28 smithi139 bash[23309]: cluster 2024-09-16T14:42:27.952412+0000 mon.a (mon.0) 1012 : cluster [DBG] osdmap e61: 5 total, 4 up, 5 in 2024-09-16T14:42:30.180 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:29 smithi162 systemd[1]: Stopping Ceph osd.5 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:42:30.180 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:29 smithi162 bash[33449]: debug 2024-09-16T14:42:29.890+0000 7fb34c77c640 -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-16T14:42:30.180 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:29 smithi162 bash[33449]: debug 2024-09-16T14:42:29.890+0000 7fb34c77c640 -1 osd.5 62 *** Got signal Terminated *** 2024-09-16T14:42:30.180 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:29 smithi162 bash[33449]: debug 2024-09-16T14:42:29.890+0000 7fb34c77c640 -1 osd.5 62 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:28.948937+0000 mon.a (mon.0) 1013 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:28.948993+0000 mon.a (mon.0) 1014 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:28.949043+0000 mon.a (mon.0) 1015 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:28.956135+0000 mon.a (mon.0) 1016 : cluster [INF] osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133] boot 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:28.956223+0000 mon.a (mon.0) 1017 : cluster [DBG] osdmap e62: 5 total, 5 up, 5 in 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: audit 2024-09-16T14:42:28.956941+0000 mon.a (mon.0) 1018 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:42:30.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:29.865032+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:30.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:29 smithi019 bash[22501]: cluster 2024-09-16T14:42:29.891561+0000 mon.a (mon.0) 1019 : cluster [INF] osd.5 marked itself down and dead 2024-09-16T14:42:30.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:28.948937+0000 mon.a (mon.0) 1013 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:28.948993+0000 mon.a (mon.0) 1014 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:28.949043+0000 mon.a (mon.0) 1015 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:28.956135+0000 mon.a (mon.0) 1016 : cluster [INF] osd.5 [v2:172.21.15.162:6808/3026856133,v1:172.21.15.162:6809/3026856133] boot 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:28.956223+0000 mon.a (mon.0) 1017 : cluster [DBG] osdmap e62: 5 total, 5 up, 5 in 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: audit 2024-09-16T14:42:28.956941+0000 mon.a (mon.0) 1018 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:29.865032+0000 mgr.a (mgr.14150) 431 : cluster [DBG] pgmap v359: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:30.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:29 smithi139 bash[23309]: cluster 2024-09-16T14:42:29.891561+0000 mon.a (mon.0) 1019 : cluster [INF] osd.5 marked itself down and dead 2024-09-16T14:42:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:30 smithi019 bash[22501]: cluster 2024-09-16T14:42:29.959038+0000 mon.a (mon.0) 1020 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:30 smithi019 bash[22501]: cluster 2024-09-16T14:42:29.959102+0000 mon.a (mon.0) 1021 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T14:42:31.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:30 smithi019 bash[22501]: cluster 2024-09-16T14:42:29.972230+0000 mon.a (mon.0) 1022 : cluster [DBG] osdmap e63: 5 total, 4 up, 5 in 2024-09-16T14:42:31.238 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:30 smithi162 bash[39597]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-5 2024-09-16T14:42:31.238 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:31 smithi162 bash[39662]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-5 2024-09-16T14:42:31.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:30 smithi139 bash[23309]: cluster 2024-09-16T14:42:29.959038+0000 mon.a (mon.0) 1020 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-09-16T14:42:31.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:30 smithi139 bash[23309]: cluster 2024-09-16T14:42:29.959102+0000 mon.a (mon.0) 1021 : cluster [WRN] Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-16T14:42:31.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:30 smithi139 bash[23309]: cluster 2024-09-16T14:42:29.972230+0000 mon.a (mon.0) 1022 : cluster [DBG] osdmap e63: 5 total, 4 up, 5 in 2024-09-16T14:42:32.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:31 smithi139 bash[23309]: cluster 2024-09-16T14:42:31.865602+0000 mgr.a (mgr.14150) 432 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:32.479 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:31 smithi019 bash[22501]: cluster 2024-09-16T14:42:31.865602+0000 mgr.a (mgr.14150) 432 : cluster [DBG] pgmap v361: 1 pgs: 1 active+clean; 577 KiB data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-16T14:42:33.915 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:33 smithi162 systemd[1]: ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-16T14:42:33.915 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:33 smithi162 systemd[1]: Stopped Ceph osd.5 for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:42:33.915 INFO:journalctl@ceph.osd.5.smithi162.stdout:Sep 16 14:42:33 smithi162 systemd[1]: /etc/systemd/system/ceph-130fbd00-7438-11ef-bceb-c7b262605968@.service:24: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: audit 2024-09-16T14:42:33.837373+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: audit 2024-09-16T14:42:33.844452+0000 mon.a (mon.0) 1024 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: audit 2024-09-16T14:42:33.846590+0000 mon.a (mon.0) 1025 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: cluster 2024-09-16T14:42:33.848057+0000 mon.a (mon.0) 1026 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: cluster 2024-09-16T14:42:33.848124+0000 mon.a (mon.0) 1027 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: cluster 2024-09-16T14:42:33.848167+0000 mon.a (mon.0) 1028 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:34.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: audit 2024-09-16T14:42:33.855208+0000 mon.a (mon.0) 1029 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T14:42:34.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:33 smithi019 bash[22501]: cluster 2024-09-16T14:42:33.855380+0000 mon.a (mon.0) 1030 : cluster [DBG] osdmap e64: 4 total, 4 up, 4 in 2024-09-16T14:42:34.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: audit 2024-09-16T14:42:33.837373+0000 mon.a (mon.0) 1023 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-09-16T14:42:34.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: audit 2024-09-16T14:42:33.844452+0000 mon.a (mon.0) 1024 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: audit 2024-09-16T14:42:33.846590+0000 mon.a (mon.0) 1025 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: cluster 2024-09-16T14:42:33.848057+0000 mon.a (mon.0) 1026 : cluster [INF] Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: cluster 2024-09-16T14:42:33.848124+0000 mon.a (mon.0) 1027 : cluster [INF] Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: cluster 2024-09-16T14:42:33.848167+0000 mon.a (mon.0) 1028 : cluster [INF] Cluster is now healthy 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: audit 2024-09-16T14:42:33.855208+0000 mon.a (mon.0) 1029 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-16T14:42:34.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:33 smithi139 bash[23309]: cluster 2024-09-16T14:42:33.855380+0000 mon.a (mon.0) 1030 : cluster [DBG] osdmap e64: 4 total, 4 up, 4 in 2024-09-16T14:42:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:34 smithi019 bash[22501]: cephadm 2024-09-16T14:42:33.836661+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Removing key for osd.5 2024-09-16T14:42:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:34 smithi019 bash[22501]: cephadm 2024-09-16T14:42:33.845891+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Successfully removed osd.5 on smithi162 2024-09-16T14:42:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:34 smithi019 bash[22501]: cephadm 2024-09-16T14:42:33.856604+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Successfully purged osd.5 on smithi162 2024-09-16T14:42:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:34 smithi019 bash[22501]: cephadm 2024-09-16T14:42:33.856797+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Zapping devices for osd.5 on smithi162 2024-09-16T14:42:35.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:34 smithi019 bash[22501]: cluster 2024-09-16T14:42:33.866062+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:35.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:34 smithi139 bash[23309]: cephadm 2024-09-16T14:42:33.836661+0000 mgr.a (mgr.14150) 433 : cephadm [INF] Removing key for osd.5 2024-09-16T14:42:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:34 smithi139 bash[23309]: cephadm 2024-09-16T14:42:33.845891+0000 mgr.a (mgr.14150) 434 : cephadm [INF] Successfully removed osd.5 on smithi162 2024-09-16T14:42:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:34 smithi139 bash[23309]: cephadm 2024-09-16T14:42:33.856604+0000 mgr.a (mgr.14150) 435 : cephadm [INF] Successfully purged osd.5 on smithi162 2024-09-16T14:42:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:34 smithi139 bash[23309]: cephadm 2024-09-16T14:42:33.856797+0000 mgr.a (mgr.14150) 436 : cephadm [INF] Zapping devices for osd.5 on smithi162 2024-09-16T14:42:35.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:34 smithi139 bash[23309]: cluster 2024-09-16T14:42:33.866062+0000 mgr.a (mgr.14150) 437 : cluster [DBG] pgmap v363: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:36.857 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 2024-09-16T14:42:37.173 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-16T14:42:37.173 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 12s ago 9m - - ' 2024-09-16T14:42:37.173 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID 2024-09-16T14:42:37.173 INFO:teuthology.orchestra.run.smithi019.stderr:agent.smithi162 smithi162 running 12s ago 9m - - ' '!=' 'No daemons reported' ']' 2024-09-16T14:42:37.173 INFO:teuthology.orchestra.run.smithi019.stderr:+ sleep 15 2024-09-16T14:42:37.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:36 smithi019 bash[22501]: cluster 2024-09-16T14:42:35.866605+0000 mgr.a (mgr.14150) 438 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:37.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:36 smithi139 bash[23309]: cluster 2024-09-16T14:42:35.866605+0000 mgr.a (mgr.14150) 438 : cluster [DBG] pgmap v364: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:39.202 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:38 smithi019 bash[22501]: audit 2024-09-16T14:42:37.153154+0000 mgr.a (mgr.14150) 439 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:39.202 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:38 smithi019 bash[22501]: cluster 2024-09-16T14:42:37.867462+0000 mgr.a (mgr.14150) 440 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:39.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:38 smithi139 bash[23309]: audit 2024-09-16T14:42:37.153154+0000 mgr.a (mgr.14150) 439 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:39.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:38 smithi139 bash[23309]: cluster 2024-09-16T14:42:37.867462+0000 mgr.a (mgr.14150) 440 : cluster [DBG] pgmap v365: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: cephadm 2024-09-16T14:42:39.623775+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Successfully zapped devices for osd.5 on smithi162 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: audit 2024-09-16T14:42:39.631629+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: cephadm 2024-09-16T14:42:39.635003+0000 mgr.a (mgr.14150) 442 : cephadm [INF] Removing daemon agent.smithi162 from smithi162 -- ports [] 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: audit 2024-09-16T14:42:39.641795+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: audit 2024-09-16T14:42:39.654276+0000 mon.a (mon.0) 1033 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: audit 2024-09-16T14:42:39.664401+0000 mon.a (mon.0) 1034 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:40.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:40 smithi019 bash[22501]: cluster 2024-09-16T14:42:39.868037+0000 mgr.a (mgr.14150) 443 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:41.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: cephadm 2024-09-16T14:42:39.623775+0000 mgr.a (mgr.14150) 441 : cephadm [INF] Successfully zapped devices for osd.5 on smithi162 2024-09-16T14:42:41.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: audit 2024-09-16T14:42:39.631629+0000 mon.a (mon.0) 1031 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: cephadm 2024-09-16T14:42:39.635003+0000 mgr.a (mgr.14150) 442 : cephadm [INF] Removing daemon agent.smithi162 from smithi162 -- ports [] 2024-09-16T14:42:41.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: audit 2024-09-16T14:42:39.641795+0000 mon.a (mon.0) 1032 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: audit 2024-09-16T14:42:39.654276+0000 mon.a (mon.0) 1033 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: audit 2024-09-16T14:42:39.664401+0000 mon.a (mon.0) 1034 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:40 smithi139 bash[23309]: cluster 2024-09-16T14:42:39.868037+0000 mgr.a (mgr.14150) 443 : cluster [DBG] pgmap v366: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:41 smithi019 bash[22501]: audit 2024-09-16T14:42:41.243392+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi162"}]: dispatch 2024-09-16T14:42:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:41 smithi019 bash[22501]: audit 2024-09-16T14:42:41.250116+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi162"}]': finished 2024-09-16T14:42:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:41 smithi019 bash[22501]: audit 2024-09-16T14:42:41.258232+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:41 smithi019 bash[22501]: audit 2024-09-16T14:42:41.265204+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:41.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:41 smithi019 bash[22501]: audit 2024-09-16T14:42:41.357391+0000 mon.a (mon.0) 1039 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:42:42.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:41 smithi139 bash[23309]: audit 2024-09-16T14:42:41.243392+0000 mon.a (mon.0) 1035 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi162"}]: dispatch 2024-09-16T14:42:42.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:41 smithi139 bash[23309]: audit 2024-09-16T14:42:41.250116+0000 mon.a (mon.0) 1036 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi162"}]': finished 2024-09-16T14:42:42.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:41 smithi139 bash[23309]: audit 2024-09-16T14:42:41.258232+0000 mon.a (mon.0) 1037 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:41 smithi139 bash[23309]: audit 2024-09-16T14:42:41.265204+0000 mon.a (mon.0) 1038 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.100 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:41 smithi139 bash[23309]: audit 2024-09-16T14:42:41.357391+0000 mon.a (mon.0) 1039 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:42:42.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:42 smithi139 bash[23309]: cephadm 2024-09-16T14:42:41.242771+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Removing key for client.agent.smithi162 2024-09-16T14:42:42.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:42 smithi139 bash[23309]: audit 2024-09-16T14:42:41.719668+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:42 smithi139 bash[23309]: audit 2024-09-16T14:42:41.723900+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:42 smithi139 bash[23309]: cluster 2024-09-16T14:42:41.868649+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:42 smithi019 bash[22501]: cephadm 2024-09-16T14:42:41.242771+0000 mgr.a (mgr.14150) 444 : cephadm [INF] Removing key for client.agent.smithi162 2024-09-16T14:42:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:42 smithi019 bash[22501]: audit 2024-09-16T14:42:41.719668+0000 mon.a (mon.0) 1040 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:42 smithi019 bash[22501]: audit 2024-09-16T14:42:41.723900+0000 mon.a (mon.0) 1041 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:42.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:42 smithi019 bash[22501]: cluster 2024-09-16T14:42:41.868649+0000 mgr.a (mgr.14150) 445 : cluster [DBG] pgmap v367: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:44.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:43 smithi139 bash[23309]: audit 2024-09-16T14:42:42.737994+0000 mon.a (mon.0) 1042 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:43 smithi139 bash[23309]: audit 2024-09-16T14:42:42.745169+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:43 smithi139 bash[23309]: audit 2024-09-16T14:42:43.686012+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:43 smithi019 bash[22501]: audit 2024-09-16T14:42:42.737994+0000 mon.a (mon.0) 1042 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:43 smithi019 bash[22501]: audit 2024-09-16T14:42:42.745169+0000 mon.a (mon.0) 1043 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:43 smithi019 bash[22501]: audit 2024-09-16T14:42:43.686012+0000 mon.a (mon.0) 1044 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:44.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:44 smithi139 bash[23309]: cluster 2024-09-16T14:42:43.869206+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:45.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:44 smithi019 bash[22501]: cluster 2024-09-16T14:42:43.869206+0000 mgr.a (mgr.14150) 446 : cluster [DBG] pgmap v368: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:47.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:46 smithi019 bash[22501]: cluster 2024-09-16T14:42:45.869762+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:47.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:46 smithi139 bash[23309]: cluster 2024-09-16T14:42:45.869762+0000 mgr.a (mgr.14150) 447 : cluster [DBG] pgmap v369: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: cluster 2024-09-16T14:42:47.870306+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: cephadm 2024-09-16T14:42:47.884134+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:42:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:47.892296+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:47.899771+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:47.901295+0000 mon.a (mon.0) 1047 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:47.903366+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:47.913841+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.032180+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.033341+0000 mon.a (mon.0) 1051 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.034256+0000 mon.a (mon.0) 1052 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.076480+0000 mon.a (mon.0) 1053 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.082463+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:48 smithi019 bash[22501]: audit 2024-09-16T14:42:48.089090+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: cluster 2024-09-16T14:42:47.870306+0000 mgr.a (mgr.14150) 448 : cluster [DBG] pgmap v370: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:49.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: cephadm 2024-09-16T14:42:47.884134+0000 mgr.a (mgr.14150) 449 : cephadm [INF] Detected new or changed devices on smithi162 2024-09-16T14:42:49.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:47.892296+0000 mon.a (mon.0) 1045 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:47.899771+0000 mon.a (mon.0) 1046 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:47.901295+0000 mon.a (mon.0) 1047 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:47.903366+0000 mon.a (mon.0) 1048 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:47.913841+0000 mon.a (mon.0) 1049 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.032180+0000 mon.a (mon.0) 1050 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.033341+0000 mon.a (mon.0) 1051 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.034256+0000 mon.a (mon.0) 1052 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.076480+0000 mon.a (mon.0) 1053 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.082463+0000 mon.a (mon.0) 1054 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:49.351 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:48 smithi139 bash[23309]: audit 2024-09-16T14:42:48.089090+0000 mon.a (mon.0) 1055 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:49 smithi019 bash[22501]: cephadm 2024-09-16T14:42:48.031699+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T14:42:50.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:49 smithi019 bash[22501]: cephadm 2024-09-16T14:42:48.035340+0000 mgr.a (mgr.14150) 451 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:42:50.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:49 smithi139 bash[23309]: cephadm 2024-09-16T14:42:48.031699+0000 mgr.a (mgr.14150) 450 : cephadm [INF] Reconfiguring mon.a (monmap changed)... 2024-09-16T14:42:50.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:49 smithi139 bash[23309]: cephadm 2024-09-16T14:42:48.035340+0000 mgr.a (mgr.14150) 451 : cephadm [INF] Reconfiguring daemon mon.a on smithi019 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: cluster 2024-09-16T14:42:49.870854+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: audit 2024-09-16T14:42:50.067586+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: audit 2024-09-16T14:42:50.073893+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: audit 2024-09-16T14:42:50.094225+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: audit 2024-09-16T14:42:50.096209+0000 mon.a (mon.0) 1059 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:42:51.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:50 smithi019 bash[22501]: audit 2024-09-16T14:42:50.098152+0000 mon.a (mon.0) 1060 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:51.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: cluster 2024-09-16T14:42:49.870854+0000 mgr.a (mgr.14150) 452 : cluster [DBG] pgmap v371: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:51.383 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: audit 2024-09-16T14:42:50.067586+0000 mon.a (mon.0) 1056 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:51.383 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: audit 2024-09-16T14:42:50.073893+0000 mon.a (mon.0) 1057 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:51.383 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: audit 2024-09-16T14:42:50.094225+0000 mon.a (mon.0) 1058 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:42:51.383 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: audit 2024-09-16T14:42:50.096209+0000 mon.a (mon.0) 1059 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:42:51.383 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:50 smithi139 bash[23309]: audit 2024-09-16T14:42:50.098152+0000 mon.a (mon.0) 1060 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:51.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:51 smithi019 bash[22501]: cephadm 2024-09-16T14:42:50.093570+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T14:42:51.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:51 smithi019 bash[22501]: cephadm 2024-09-16T14:42:50.101196+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi019 2024-09-16T14:42:52.175 INFO:teuthology.orchestra.run.smithi019.stderr:++ ceph orch ps --hostname smithi162 2024-09-16T14:42:52.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:51 smithi139 bash[23309]: cephadm 2024-09-16T14:42:50.093570+0000 mgr.a (mgr.14150) 453 : cephadm [INF] Reconfiguring mgr.a (monmap changed)... 2024-09-16T14:42:52.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:51 smithi139 bash[23309]: cephadm 2024-09-16T14:42:50.101196+0000 mgr.a (mgr.14150) 454 : cephadm [INF] Reconfiguring daemon mgr.a on smithi019 2024-09-16T14:42:52.475 INFO:teuthology.orchestra.run.smithi019.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-16T14:42:52.475 INFO:teuthology.orchestra.run.smithi019.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-16T14:42:52.475 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T14:42:52.738 INFO:teuthology.orchestra.run.smithi019.stderr:17 2024-09-16T14:42:52.749 INFO:teuthology.orchestra.run.smithi019.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T14:42:52.765 INFO:teuthology.orchestra.run.smithi019.stderr:++ cat crushmap.txt 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_local_tries 0 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_local_fallback_tries 0 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_total_tries 50 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_descend_once 1 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_vary_r 1 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_stable 1 2024-09-16T14:42:52.766 INFO:teuthology.orchestra.run.smithi019.stderr:tunable straw_calc_version 1 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:tunable allowed_bucket_algs 54 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:# devices 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:device 0 osd.0 class ssd 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:device 1 osd.1 class ssd 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:device 2 osd.2 class ssd 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:device 3 osd.3 class ssd 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:# types 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:type 0 osd 2024-09-16T14:42:52.767 INFO:teuthology.orchestra.run.smithi019.stderr:type 1 host 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 2 chassis 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 3 rack 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 4 row 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 5 pdu 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 6 pod 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 7 room 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 8 datacenter 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 9 zone 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 10 region 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:type 11 root 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:# buckets 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr:host smithi019 { 2024-09-16T14:42:52.768 INFO:teuthology.orchestra.run.smithi019.stderr: id -3 # do not change unnecessarily 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.17459 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.0 weight 0.08730 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.1 weight 0.08730 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr:host smithi139 { 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: id -5 # do not change unnecessarily 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T14:42:52.769 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.17459 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.2 weight 0.08730 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.3 weight 0.08730 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr:host smithi162 { 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: id -7 # do not change unnecessarily 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: id -8 class ssd # do not change unnecessarily 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.00000 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:42:52.770 INFO:teuthology.orchestra.run.smithi019.stderr:root default { 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: id -1 # do not change unnecessarily 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.34918 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: item smithi019 weight 0.17459 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: item smithi139 weight 0.17459 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: item smithi162 weight 0.00000 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr:# rules 2024-09-16T14:42:52.771 INFO:teuthology.orchestra.run.smithi019.stderr:rule replicated_rule { 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: id 0 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: type replicated 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: step take default 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: step choose firstn 0 type osd 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: step emit 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr:# end crush map' 2024-09-16T14:42:52.772 INFO:teuthology.orchestra.run.smithi019.stderr:+ grep -q smithi162 2024-09-16T14:42:52.773 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph orch host rm smithi162 --rm-crush-entry 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: cluster 2024-09-16T14:42:51.871416+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: audit 2024-09-16T14:42:52.157502+0000 mon.a (mon.0) 1061 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: audit 2024-09-16T14:42:52.166128+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: audit 2024-09-16T14:42:52.168348+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: audit 2024-09-16T14:42:52.169580+0000 mon.a (mon.0) 1064 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:53.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:52 smithi019 bash[22501]: audit 2024-09-16T14:42:52.737603+0000 mon.a (mon.0) 1065 : audit [DBG] from='client.? 172.21.15.19:0/1221907365' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: cluster 2024-09-16T14:42:51.871416+0000 mgr.a (mgr.14150) 455 : cluster [DBG] pgmap v372: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: audit 2024-09-16T14:42:52.157502+0000 mon.a (mon.0) 1061 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: audit 2024-09-16T14:42:52.166128+0000 mon.a (mon.0) 1062 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: audit 2024-09-16T14:42:52.168348+0000 mon.a (mon.0) 1063 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: audit 2024-09-16T14:42:52.169580+0000 mon.a (mon.0) 1064 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:53.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:52 smithi139 bash[23309]: audit 2024-09-16T14:42:52.737603+0000 mon.a (mon.0) 1065 : audit [DBG] from='client.? 172.21.15.19:0/1221907365' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T14:42:53.948 INFO:teuthology.orchestra.run.smithi019.stdout:Removed host 'smithi162' 2024-09-16T14:42:53.963 INFO:teuthology.orchestra.run.smithi019.stderr:+ sleep 30 2024-09-16T14:42:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:53 smithi019 bash[22501]: cephadm 2024-09-16T14:42:52.167798+0000 mgr.a (mgr.14150) 456 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T14:42:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:53 smithi019 bash[22501]: cephadm 2024-09-16T14:42:52.171635+0000 mgr.a (mgr.14150) 457 : cephadm [INF] Reconfiguring daemon osd.0 on smithi019 2024-09-16T14:42:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:53 smithi019 bash[22501]: audit 2024-09-16T14:42:52.462497+0000 mgr.a (mgr.14150) 458 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:54.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:53 smithi019 bash[22501]: audit 2024-09-16T14:42:53.036439+0000 mon.a (mon.0) 1066 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi162"}]: dispatch 2024-09-16T14:42:54.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:53 smithi139 bash[23309]: cephadm 2024-09-16T14:42:52.167798+0000 mgr.a (mgr.14150) 456 : cephadm [INF] Reconfiguring osd.0 (monmap changed)... 2024-09-16T14:42:54.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:53 smithi139 bash[23309]: cephadm 2024-09-16T14:42:52.171635+0000 mgr.a (mgr.14150) 457 : cephadm [INF] Reconfiguring daemon osd.0 on smithi019 2024-09-16T14:42:54.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:53 smithi139 bash[23309]: audit 2024-09-16T14:42:52.462497+0000 mgr.a (mgr.14150) 458 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi162", "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:54.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:53 smithi139 bash[23309]: audit 2024-09-16T14:42:53.036439+0000 mon.a (mon.0) 1066 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi162"}]: dispatch 2024-09-16T14:42:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:53.035595+0000 mgr.a (mgr.14150) 459 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi162", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: cluster 2024-09-16T14:42:53.871881+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:53.929430+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi162"}]': finished 2024-09-16T14:42:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: cluster 2024-09-16T14:42:53.929646+0000 mon.a (mon.0) 1068 : cluster [DBG] osdmap e65: 4 total, 4 up, 4 in 2024-09-16T14:42:55.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:53.937089+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:53.938314+0000 mon.a (mon.0) 1070 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi162"}]: dispatch 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:53.944069+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi162"}]': finished 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:54.518414+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:54.523715+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:54.525004+0000 mon.a (mon.0) 1074 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T14:42:55.230 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:54 smithi019 bash[22501]: audit 2024-09-16T14:42:54.526041+0000 mon.a (mon.0) 1075 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:55.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:53.035595+0000 mgr.a (mgr.14150) 459 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi162", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-16T14:42:55.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: cluster 2024-09-16T14:42:53.871881+0000 mgr.a (mgr.14150) 460 : cluster [DBG] pgmap v373: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:55.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:53.929430+0000 mon.a (mon.0) 1067 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi162"}]': finished 2024-09-16T14:42:55.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: cluster 2024-09-16T14:42:53.929646+0000 mon.a (mon.0) 1068 : cluster [DBG] osdmap e65: 4 total, 4 up, 4 in 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:53.937089+0000 mon.a (mon.0) 1069 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:53.938314+0000 mon.a (mon.0) 1070 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi162"}]: dispatch 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:53.944069+0000 mon.a (mon.0) 1071 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi162"}]': finished 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:54.518414+0000 mon.a (mon.0) 1072 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:54.523715+0000 mon.a (mon.0) 1073 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:54.525004+0000 mon.a (mon.0) 1074 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-16T14:42:55.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:54 smithi139 bash[23309]: audit 2024-09-16T14:42:54.526041+0000 mon.a (mon.0) 1075 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:56.115 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:55 smithi019 bash[22501]: cephadm 2024-09-16T14:42:53.947761+0000 mgr.a (mgr.14150) 461 : cephadm [INF] Removed host smithi162 2024-09-16T14:42:56.115 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:55 smithi019 bash[22501]: cephadm 2024-09-16T14:42:54.524623+0000 mgr.a (mgr.14150) 462 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T14:42:56.115 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:55 smithi019 bash[22501]: cephadm 2024-09-16T14:42:54.527989+0000 mgr.a (mgr.14150) 463 : cephadm [INF] Reconfiguring daemon osd.1 on smithi019 2024-09-16T14:42:56.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:55 smithi139 bash[23309]: cephadm 2024-09-16T14:42:53.947761+0000 mgr.a (mgr.14150) 461 : cephadm [INF] Removed host smithi162 2024-09-16T14:42:56.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:55 smithi139 bash[23309]: cephadm 2024-09-16T14:42:54.524623+0000 mgr.a (mgr.14150) 462 : cephadm [INF] Reconfiguring osd.1 (monmap changed)... 2024-09-16T14:42:56.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:55 smithi139 bash[23309]: cephadm 2024-09-16T14:42:54.527989+0000 mgr.a (mgr.14150) 463 : cephadm [INF] Reconfiguring daemon osd.1 on smithi019 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: cluster 2024-09-16T14:42:55.872295+0000 mgr.a (mgr.14150) 464 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: audit 2024-09-16T14:42:56.650053+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: audit 2024-09-16T14:42:56.655057+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: audit 2024-09-16T14:42:56.656478+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: audit 2024-09-16T14:42:56.657358+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:42:57.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:56 smithi019 bash[22501]: audit 2024-09-16T14:42:56.658156+0000 mon.a (mon.0) 1080 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: cluster 2024-09-16T14:42:55.872295+0000 mgr.a (mgr.14150) 464 : cluster [DBG] pgmap v375: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: audit 2024-09-16T14:42:56.650053+0000 mon.a (mon.0) 1076 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: audit 2024-09-16T14:42:56.655057+0000 mon.a (mon.0) 1077 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: audit 2024-09-16T14:42:56.656478+0000 mon.a (mon.0) 1078 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: audit 2024-09-16T14:42:56.657358+0000 mon.a (mon.0) 1079 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-16T14:42:57.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:56 smithi139 bash[23309]: audit 2024-09-16T14:42:56.658156+0000 mon.a (mon.0) 1080 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:58.212 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:57 smithi139 bash[23309]: cephadm 2024-09-16T14:42:56.656220+0000 mgr.a (mgr.14150) 465 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T14:42:58.212 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:57 smithi139 bash[23309]: cephadm 2024-09-16T14:42:56.659157+0000 mgr.a (mgr.14150) 466 : cephadm [INF] Reconfiguring daemon mon.b on smithi139 2024-09-16T14:42:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:57 smithi019 bash[22501]: cephadm 2024-09-16T14:42:56.656220+0000 mgr.a (mgr.14150) 465 : cephadm [INF] Reconfiguring mon.b (monmap changed)... 2024-09-16T14:42:58.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:57 smithi019 bash[22501]: cephadm 2024-09-16T14:42:56.659157+0000 mgr.a (mgr.14150) 466 : cephadm [INF] Reconfiguring daemon mon.b on smithi139 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: cluster 2024-09-16T14:42:57.872853+0000 mgr.a (mgr.14150) 467 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: audit 2024-09-16T14:42:58.665845+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: audit 2024-09-16T14:42:58.675587+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: cephadm 2024-09-16T14:42:58.677160+0000 mgr.a (mgr.14150) 468 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: audit 2024-09-16T14:42:58.677795+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:42:59.232 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: audit 2024-09-16T14:42:58.679740+0000 mon.a (mon.0) 1084 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:42:59.233 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: audit 2024-09-16T14:42:58.681431+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:59.233 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:42:58 smithi019 bash[22501]: cephadm 2024-09-16T14:42:58.683258+0000 mgr.a (mgr.14150) 469 : cephadm [INF] Reconfiguring daemon mgr.b on smithi139 2024-09-16T14:42:59.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: cluster 2024-09-16T14:42:57.872853+0000 mgr.a (mgr.14150) 467 : cluster [DBG] pgmap v376: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:42:59.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: audit 2024-09-16T14:42:58.665845+0000 mon.a (mon.0) 1081 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:59.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: audit 2024-09-16T14:42:58.675587+0000 mon.a (mon.0) 1082 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:42:59.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: cephadm 2024-09-16T14:42:58.677160+0000 mgr.a (mgr.14150) 468 : cephadm [INF] Reconfiguring mgr.b (monmap changed)... 2024-09-16T14:42:59.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: audit 2024-09-16T14:42:58.677795+0000 mon.a (mon.0) 1083 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-16T14:42:59.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: audit 2024-09-16T14:42:58.679740+0000 mon.a (mon.0) 1084 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-16T14:42:59.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: audit 2024-09-16T14:42:58.681431+0000 mon.a (mon.0) 1085 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:42:59.350 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:42:58 smithi139 bash[23309]: cephadm 2024-09-16T14:42:58.683258+0000 mgr.a (mgr.14150) 469 : cephadm [INF] Reconfiguring daemon mgr.b on smithi139 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:42:59.834899+0000 mon.a (mon.0) 1086 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:42:59.844955+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:42:59.855487+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: cluster 2024-09-16T14:42:59.873508+0000 mgr.a (mgr.14150) 470 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:43:00.571050+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:43:00.581021+0000 mon.a (mon.0) 1090 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:43:00.583364+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T14:43:01.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:00 smithi139 bash[23309]: audit 2024-09-16T14:43:00.585135+0000 mon.a (mon.0) 1092 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:42:59.834899+0000 mon.a (mon.0) 1086 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:42:59.844955+0000 mon.a (mon.0) 1087 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:42:59.855487+0000 mon.a (mon.0) 1088 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: cluster 2024-09-16T14:42:59.873508+0000 mgr.a (mgr.14150) 470 : cluster [DBG] pgmap v377: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:43:00.571050+0000 mon.a (mon.0) 1089 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:43:00.581021+0000 mon.a (mon.0) 1090 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:43:00.583364+0000 mon.a (mon.0) 1091 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-16T14:43:01.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:00 smithi019 bash[22501]: audit 2024-09-16T14:43:00.585135+0000 mon.a (mon.0) 1092 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:01 smithi019 bash[22501]: cephadm 2024-09-16T14:43:00.582716+0000 mgr.a (mgr.14150) 471 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T14:43:02.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:01 smithi019 bash[22501]: cephadm 2024-09-16T14:43:00.587816+0000 mgr.a (mgr.14150) 472 : cephadm [INF] Reconfiguring daemon osd.2 on smithi139 2024-09-16T14:43:02.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:01 smithi139 bash[23309]: cephadm 2024-09-16T14:43:00.582716+0000 mgr.a (mgr.14150) 471 : cephadm [INF] Reconfiguring osd.2 (monmap changed)... 2024-09-16T14:43:02.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:01 smithi139 bash[23309]: cephadm 2024-09-16T14:43:00.587816+0000 mgr.a (mgr.14150) 472 : cephadm [INF] Reconfiguring daemon osd.2 on smithi139 2024-09-16T14:43:03.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:02 smithi139 bash[23309]: cluster 2024-09-16T14:43:01.874116+0000 mgr.a (mgr.14150) 473 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:03.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:02 smithi019 bash[22501]: cluster 2024-09-16T14:43:01.874116+0000 mgr.a (mgr.14150) 473 : cluster [DBG] pgmap v378: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: audit 2024-09-16T14:43:03.601528+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: audit 2024-09-16T14:43:03.609916+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: cephadm 2024-09-16T14:43:03.611593+0000 mgr.a (mgr.14150) 474 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: audit 2024-09-16T14:43:03.612264+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: audit 2024-09-16T14:43:03.613966+0000 mon.a (mon.0) 1096 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:04.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: cephadm 2024-09-16T14:43:03.616600+0000 mgr.a (mgr.14150) 475 : cephadm [INF] Reconfiguring daemon osd.3 on smithi139 2024-09-16T14:43:04.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:04 smithi139 bash[23309]: cluster 2024-09-16T14:43:03.874798+0000 mgr.a (mgr.14150) 476 : cluster [DBG] pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: audit 2024-09-16T14:43:03.601528+0000 mon.a (mon.0) 1093 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: audit 2024-09-16T14:43:03.609916+0000 mon.a (mon.0) 1094 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: cephadm 2024-09-16T14:43:03.611593+0000 mgr.a (mgr.14150) 474 : cephadm [INF] Reconfiguring osd.3 (monmap changed)... 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: audit 2024-09-16T14:43:03.612264+0000 mon.a (mon.0) 1095 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: audit 2024-09-16T14:43:03.613966+0000 mon.a (mon.0) 1096 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: cephadm 2024-09-16T14:43:03.616600+0000 mgr.a (mgr.14150) 475 : cephadm [INF] Reconfiguring daemon osd.3 on smithi139 2024-09-16T14:43:04.979 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:04 smithi019 bash[22501]: cluster 2024-09-16T14:43:03.874798+0000 mgr.a (mgr.14150) 476 : cluster [DBG] pgmap v379: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:07.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:06 smithi019 bash[22501]: cluster 2024-09-16T14:43:05.875449+0000 mgr.a (mgr.14150) 477 : cluster [DBG] pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:07.349 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:06 smithi139 bash[23309]: cluster 2024-09-16T14:43:05.875449+0000 mgr.a (mgr.14150) 477 : cluster [DBG] pgmap v380: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:08.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.383530+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.392027+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.394965+0000 mon.a (mon.0) 1099 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:43:08.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.748311+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.756766+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.758663+0000 mon.a (mon.0) 1102 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.760382+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: cluster 2024-09-16T14:43:07.764040+0000 mgr.a (mgr.14150) 478 : cluster [DBG] pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:07.769756+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:08.293399+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:08.299658+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.730 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:08 smithi019 bash[22501]: audit 2024-09-16T14:43:08.309093+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.383530+0000 mon.a (mon.0) 1097 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.392027+0000 mon.a (mon.0) 1098 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.394965+0000 mon.a (mon.0) 1099 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.748311+0000 mon.a (mon.0) 1100 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.756766+0000 mon.a (mon.0) 1101 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.758663+0000 mon.a (mon.0) 1102 : audit [DBG] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.760382+0000 mon.a (mon.0) 1103 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: cluster 2024-09-16T14:43:07.764040+0000 mgr.a (mgr.14150) 478 : cluster [DBG] pgmap v381: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:07.769756+0000 mon.a (mon.0) 1104 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:08.293399+0000 mon.a (mon.0) 1105 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:08.299658+0000 mon.a (mon.0) 1106 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:08.850 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:08 smithi139 bash[23309]: audit 2024-09-16T14:43:08.309093+0000 mon.a (mon.0) 1107 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:09.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:09 smithi019 bash[22501]: cluster 2024-09-16T14:43:08.752882+0000 mon.a (mon.0) 1108 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-16T14:43:09.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:09 smithi139 bash[23309]: cluster 2024-09-16T14:43:08.752882+0000 mon.a (mon.0) 1108 : cluster [WRN] Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-09-16T14:43:10.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:10 smithi019 bash[22501]: cluster 2024-09-16T14:43:09.764804+0000 mgr.a (mgr.14150) 479 : cluster [DBG] pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:10.849 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:10 smithi139 bash[23309]: cluster 2024-09-16T14:43:09.764804+0000 mgr.a (mgr.14150) 479 : cluster [DBG] pgmap v382: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:13.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:12 smithi139 bash[23309]: cluster 2024-09-16T14:43:11.765580+0000 mgr.a (mgr.14150) 480 : cluster [DBG] pgmap v383: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:13.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:12 smithi019 bash[22501]: cluster 2024-09-16T14:43:11.765580+0000 mgr.a (mgr.14150) 480 : cluster [DBG] pgmap v383: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:15.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:14 smithi139 bash[23309]: cluster 2024-09-16T14:43:13.766263+0000 mgr.a (mgr.14150) 481 : cluster [DBG] pgmap v384: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:15.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:14 smithi019 bash[22501]: cluster 2024-09-16T14:43:13.766263+0000 mgr.a (mgr.14150) 481 : cluster [DBG] pgmap v384: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:17.098 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:16 smithi139 bash[23309]: cluster 2024-09-16T14:43:15.766985+0000 mgr.a (mgr.14150) 482 : cluster [DBG] pgmap v385: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:17.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:16 smithi019 bash[22501]: cluster 2024-09-16T14:43:15.766985+0000 mgr.a (mgr.14150) 482 : cluster [DBG] pgmap v385: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:19.098 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:18 smithi139 bash[23309]: cluster 2024-09-16T14:43:17.767724+0000 mgr.a (mgr.14150) 483 : cluster [DBG] pgmap v386: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:19.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:18 smithi019 bash[22501]: cluster 2024-09-16T14:43:17.767724+0000 mgr.a (mgr.14150) 483 : cluster [DBG] pgmap v386: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:21.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:20 smithi139 bash[23309]: cluster 2024-09-16T14:43:19.768334+0000 mgr.a (mgr.14150) 484 : cluster [DBG] pgmap v387: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:21.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:20 smithi139 bash[23309]: audit 2024-09-16T14:43:20.063654+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:21.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:20 smithi139 bash[23309]: audit 2024-09-16T14:43:20.072003+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:21.099 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:20 smithi139 bash[23309]: audit 2024-09-16T14:43:20.079277+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:20 smithi019 bash[22501]: cluster 2024-09-16T14:43:19.768334+0000 mgr.a (mgr.14150) 484 : cluster [DBG] pgmap v387: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:20 smithi019 bash[22501]: audit 2024-09-16T14:43:20.063654+0000 mon.a (mon.0) 1109 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:20 smithi019 bash[22501]: audit 2024-09-16T14:43:20.072003+0000 mon.a (mon.0) 1110 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:21.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:20 smithi019 bash[22501]: audit 2024-09-16T14:43:20.079277+0000 mon.a (mon.0) 1111 : audit [INF] from='mgr.14150 172.21.15.19:0/2603927872' entity='mgr.a' 2024-09-16T14:43:22.695 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:22 smithi139 bash[23309]: cluster 2024-09-16T14:43:21.769036+0000 mgr.a (mgr.14150) 485 : cluster [DBG] pgmap v388: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:22.729 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:22 smithi019 bash[22501]: cluster 2024-09-16T14:43:21.769036+0000 mgr.a (mgr.14150) 485 : cluster [DBG] pgmap v388: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:23.965 INFO:teuthology.orchestra.run.smithi019.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-16T14:43:24.249 INFO:teuthology.orchestra.run.smithi019.stderr:18 2024-09-16T14:43:24.261 INFO:teuthology.orchestra.run.smithi019.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-16T14:43:24.277 INFO:teuthology.orchestra.run.smithi019.stderr:++ cat crushmap.txt 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:+ CRUSH_MAP='# begin crush map 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_local_tries 0 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_local_fallback_tries 0 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable choose_total_tries 50 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_descend_once 1 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_vary_r 1 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable chooseleaf_stable 1 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable straw_calc_version 1 2024-09-16T14:43:24.278 INFO:teuthology.orchestra.run.smithi019.stderr:tunable allowed_bucket_algs 54 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:# devices 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:device 0 osd.0 class ssd 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:device 1 osd.1 class ssd 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:device 2 osd.2 class ssd 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:device 3 osd.3 class ssd 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:# types 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:type 0 osd 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:type 1 host 2024-09-16T14:43:24.279 INFO:teuthology.orchestra.run.smithi019.stderr:type 2 chassis 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 3 rack 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 4 row 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 5 pdu 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 6 pod 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 7 room 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 8 datacenter 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 9 zone 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 10 region 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:type 11 root 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:# buckets 2024-09-16T14:43:24.280 INFO:teuthology.orchestra.run.smithi019.stderr:host smithi019 { 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: id -3 # do not change unnecessarily 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: id -4 class ssd # do not change unnecessarily 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.17459 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.0 weight 0.08730 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.1 weight 0.08730 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:43:24.281 INFO:teuthology.orchestra.run.smithi019.stderr:host smithi139 { 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: id -5 # do not change unnecessarily 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: id -6 class ssd # do not change unnecessarily 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.17459 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.2 weight 0.08730 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: item osd.3 weight 0.08730 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr:root default { 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: id -1 # do not change unnecessarily 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: id -2 class ssd # do not change unnecessarily 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: # weight 0.34918 2024-09-16T14:43:24.282 INFO:teuthology.orchestra.run.smithi019.stderr: alg straw2 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: hash 0 # rjenkins1 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: item smithi019 weight 0.17459 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: item smithi139 weight 0.17459 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr:# rules 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr:rule replicated_rule { 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: id 0 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: type replicated 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: step take default 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: step choose firstn 0 type osd 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: step emit 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr:} 2024-09-16T14:43:24.283 INFO:teuthology.orchestra.run.smithi019.stderr: 2024-09-16T14:43:24.284 INFO:teuthology.orchestra.run.smithi019.stderr:# end crush map' 2024-09-16T14:43:24.284 INFO:teuthology.orchestra.run.smithi019.stderr:+ grep -q smithi162 2024-09-16T14:43:24.889 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:24 smithi139 bash[23309]: cluster 2024-09-16T14:43:23.769748+0000 mgr.a (mgr.14150) 486 : cluster [DBG] pgmap v389: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:24.889 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:24 smithi139 bash[23309]: audit 2024-09-16T14:43:24.249005+0000 mon.a (mon.0) 1112 : audit [DBG] from='client.? 172.21.15.19:0/2871831550' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T14:43:24.957 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-16T14:43:24.967 INFO:tasks.cephadm:Teardown begin 2024-09-16T14:43:24.968 DEBUG:teuthology.orchestra.run.smithi019:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:43:24.983 DEBUG:teuthology.orchestra.run.smithi139:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:43:24.992 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:43:25.008 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-16T14:43:25.009 DEBUG:teuthology.orchestra.run.smithi019:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T14:43:25.029 DEBUG:teuthology.orchestra.run.smithi139:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T14:43:25.041 DEBUG:teuthology.orchestra.run.smithi162:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-16T14:43:25.056 INFO:tasks.cephadm:Stopping all daemons... 2024-09-16T14:43:25.057 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-16T14:43:25.057 DEBUG:teuthology.orchestra.run.smithi019:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a 2024-09-16T14:43:25.082 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:24 smithi019 bash[22501]: cluster 2024-09-16T14:43:23.769748+0000 mgr.a (mgr.14150) 486 : cluster [DBG] pgmap v389: 1 pgs: 1 active+clean; 577 KiB data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-16T14:43:25.083 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:24 smithi019 bash[22501]: audit 2024-09-16T14:43:24.249005+0000 mon.a (mon.0) 1112 : audit [DBG] from='client.? 172.21.15.19:0/2871831550' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-09-16T14:43:25.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:25 smithi019 systemd[1]: Stopping Ceph mon.a for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:25 smithi019 bash[22501]: debug 2024-09-16T14:43:25.201+0000 7f4a73614640 -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-16T14:43:25.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:25 smithi019 bash[22501]: debug 2024-09-16T14:43:25.201+0000 7f4a73614640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-16T14:43:26.164 DEBUG:teuthology.orchestra.run.smithi019:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service' 2024-09-16T14:43:26.228 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:25 smithi019 bash[47621]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-mon-a 2024-09-16T14:43:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:26 smithi019 bash[47680]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-mon-a 2024-09-16T14:43:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:26 smithi019 systemd[1]: ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-16T14:43:26.229 INFO:journalctl@ceph.mon.a.smithi019.stdout:Sep 16 14:43:26 smithi019 systemd[1]: Stopped Ceph mon.a for 130fbd00-7438-11ef-bceb-c7b262605968. 2024-09-16T14:43:26.235 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:26.235 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-16T14:43:26.235 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-16T14:43:26.235 DEBUG:teuthology.orchestra.run.smithi139:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.b 2024-09-16T14:43:26.511 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:26 smithi139 systemd[1]: Stopping Ceph mon.b for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:26.511 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:26 smithi139 bash[23309]: debug 2024-09-16T14:43:26.395+0000 7fc9693de640 -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-16T14:43:26.511 INFO:journalctl@ceph.mon.b.smithi139.stdout:Sep 16 14:43:26 smithi139 bash[23309]: debug 2024-09-16T14:43:26.395+0000 7fc9693de640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-16T14:43:27.189 DEBUG:teuthology.orchestra.run.smithi139:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.b.service' 2024-09-16T14:43:27.220 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:27.220 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-16T14:43:27.221 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-16T14:43:27.221 DEBUG:teuthology.orchestra.run.smithi162:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.c 2024-09-16T14:43:27.245 DEBUG:teuthology.orchestra.run.smithi162:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mon.c.service' 2024-09-16T14:43:27.327 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:27.327 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-16T14:43:27.328 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-16T14:43:27.328 DEBUG:teuthology.orchestra.run.smithi019:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a 2024-09-16T14:43:27.728 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:43:27 smithi019 systemd[1]: Stopping Ceph mgr.a for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:27.728 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:43:27 smithi019 bash[22752]: debug 2024-09-16T14:43:27.473+0000 7f6fac3f5640 -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-16T14:43:27.728 INFO:journalctl@ceph.mgr.a.smithi019.stdout:Sep 16 14:43:27 smithi019 bash[22752]: debug 2024-09-16T14:43:27.473+0000 7f6fac3f5640 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-09-16T14:43:28.252 DEBUG:teuthology.orchestra.run.smithi019:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-16T14:43:28.274 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:28.274 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-16T14:43:28.274 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-16T14:43:28.274 DEBUG:teuthology.orchestra.run.smithi139:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.b 2024-09-16T14:43:28.598 INFO:journalctl@ceph.mgr.b.smithi139.stdout:Sep 16 14:43:28 smithi139 systemd[1]: Stopping Ceph mgr.b for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:29.250 DEBUG:teuthology.orchestra.run.smithi139:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-16T14:43:29.271 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:29.272 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-16T14:43:29.272 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-16T14:43:29.272 DEBUG:teuthology.orchestra.run.smithi019:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.0 2024-09-16T14:43:29.729 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:29 smithi019 systemd[1]: Stopping Ceph osd.0 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:29.729 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:29 smithi019 bash[32540]: debug 2024-09-16T14:43:29.433+0000 7f397dcfc640 -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-16T14:43:29.729 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:29 smithi019 bash[32540]: debug 2024-09-16T14:43:29.433+0000 7f397dcfc640 -1 osd.0 65 *** Got signal Terminated *** 2024-09-16T14:43:29.729 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:29 smithi019 bash[32540]: debug 2024-09-16T14:43:29.433+0000 7f397dcfc640 -1 osd.0 65 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:43:35.863 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:35 smithi019 bash[47833]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-0 2024-09-16T14:43:35.863 INFO:journalctl@ceph.osd.0.smithi019.stdout:Sep 16 14:43:35 smithi019 bash[47979]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-0 2024-09-16T14:43:38.076 DEBUG:teuthology.orchestra.run.smithi019:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.0.service' 2024-09-16T14:43:38.101 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:38.102 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-16T14:43:38.102 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-16T14:43:38.102 DEBUG:teuthology.orchestra.run.smithi019:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.1 2024-09-16T14:43:38.300 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:38 smithi019 systemd[1]: Stopping Ceph osd.1 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:38.353 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:38 smithi019 bash[36406]: debug 2024-09-16T14:43:38.313+0000 7f8b3d025640 -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-16T14:43:38.354 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:38 smithi019 bash[36406]: debug 2024-09-16T14:43:38.313+0000 7f8b3d025640 -1 osd.1 65 *** Got signal Terminated *** 2024-09-16T14:43:38.354 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:38 smithi019 bash[36406]: debug 2024-09-16T14:43:38.313+0000 7f8b3d025640 -1 osd.1 65 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:43:44.381 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:44 smithi019 bash[48331]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-1 2024-09-16T14:43:44.381 INFO:journalctl@ceph.osd.1.smithi019.stdout:Sep 16 14:43:44 smithi019 bash[48561]: Error response from daemon: No such container: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-1 2024-09-16T14:43:46.089 DEBUG:teuthology.orchestra.run.smithi019:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.1.service' 2024-09-16T14:43:46.130 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:46.130 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-16T14:43:46.131 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-16T14:43:46.131 DEBUG:teuthology.orchestra.run.smithi139:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.2 2024-09-16T14:43:46.598 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:46 smithi139 systemd[1]: Stopping Ceph osd.2 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:46.599 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:46 smithi139 bash[28960]: debug 2024-09-16T14:43:46.283+0000 7fa54a184640 -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-16T14:43:46.599 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:46 smithi139 bash[28960]: debug 2024-09-16T14:43:46.283+0000 7fa54a184640 -1 osd.2 65 *** Got signal Terminated *** 2024-09-16T14:43:46.599 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:46 smithi139 bash[28960]: debug 2024-09-16T14:43:46.283+0000 7fa54a184640 -1 osd.2 65 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:43:52.405 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:52 smithi139 bash[38331]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-2 2024-09-16T14:43:52.406 INFO:journalctl@ceph.osd.2.smithi139.stdout:Sep 16 14:43:52 smithi139 bash[38600]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-2 2024-09-16T14:43:54.003 DEBUG:teuthology.orchestra.run.smithi139:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.2.service' 2024-09-16T14:43:54.030 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:43:54.030 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-16T14:43:54.030 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-16T14:43:54.031 DEBUG:teuthology.orchestra.run.smithi139:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.3 2024-09-16T14:43:54.349 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:54 smithi139 systemd[1]: Stopping Ceph osd.3 for 130fbd00-7438-11ef-bceb-c7b262605968... 2024-09-16T14:43:54.349 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:54 smithi139 bash[32538]: debug 2024-09-16T14:43:54.215+0000 7ff11bba2640 -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-16T14:43:54.349 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:54 smithi139 bash[32538]: debug 2024-09-16T14:43:54.215+0000 7ff11bba2640 -1 osd.3 65 *** Got signal Terminated *** 2024-09-16T14:43:54.349 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:54 smithi139 bash[32538]: debug 2024-09-16T14:43:54.215+0000 7ff11bba2640 -1 osd.3 65 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-16T14:43:57.848 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:57 smithi139 bash[32538]: debug 2024-09-16T14:43:57.579+0000 7ff1141ae640 -1 osd.3 65 heartbeat_check: no reply from 172.21.15.19:6806 osd.0 since back 2024-09-16T14:43:30.861637+0000 front 2024-09-16T14:43:30.861752+0000 (oldest deadline 2024-09-16T14:43:57.261734+0000) 2024-09-16T14:43:59.098 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:43:58 smithi139 bash[32538]: debug 2024-09-16T14:43:58.615+0000 7ff1141ae640 -1 osd.3 65 heartbeat_check: no reply from 172.21.15.19:6806 osd.0 since back 2024-09-16T14:43:30.861637+0000 front 2024-09-16T14:43:30.861752+0000 (oldest deadline 2024-09-16T14:43:57.261734+0000) 2024-09-16T14:44:00.431 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:44:00 smithi139 bash[38729]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-3 2024-09-16T14:44:00.431 INFO:journalctl@ceph.osd.3.smithi139.stdout:Sep 16 14:44:00 smithi139 bash[38794]: ceph-130fbd00-7438-11ef-bceb-c7b262605968-osd-3 2024-09-16T14:44:02.383 DEBUG:teuthology.orchestra.run.smithi139:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.3.service' 2024-09-16T14:44:02.422 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:44:02.423 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-16T14:44:02.423 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-16T14:44:02.423 DEBUG:teuthology.orchestra.run.smithi162:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.4 2024-09-16T14:44:02.449 DEBUG:teuthology.orchestra.run.smithi162:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.4.service' 2024-09-16T14:44:02.517 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:44:02.517 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-16T14:44:02.517 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-16T14:44:02.517 DEBUG:teuthology.orchestra.run.smithi162:> sudo systemctl stop ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.5 2024-09-16T14:44:02.590 DEBUG:teuthology.orchestra.run.smithi162:> sudo pkill -f 'journalctl -f -n 0 -u ceph-130fbd00-7438-11ef-bceb-c7b262605968@osd.5.service' 2024-09-16T14:44:02.661 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-16T14:44:02.661 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-16T14:44:02.662 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T14:44:02.789 INFO:teuthology.orchestra.run.smithi019.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:05.512 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T14:44:05.634 INFO:teuthology.orchestra.run.smithi139.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:08.164 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-16T14:44:08.288 INFO:teuthology.orchestra.run.smithi162.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:09.830 DEBUG:teuthology.orchestra.run.smithi019:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:44:09.845 DEBUG:teuthology.orchestra.run.smithi139:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:44:09.859 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-16T14:44:09.870 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-16T14:44:09.872 DEBUG:teuthology.misc:Transferring archived files from smithi019:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi019/crash 2024-09-16T14:44:09.873 DEBUG:teuthology.orchestra.run.smithi019:> sudo tar c -f - -C /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash -- . 2024-09-16T14:44:09.901 INFO:teuthology.orchestra.run.smithi019.stderr:tar: /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T14:44:09.901 INFO:teuthology.orchestra.run.smithi019.stderr:tar: Error is not recoverable: exiting now 2024-09-16T14:44:09.904 DEBUG:teuthology.misc:Transferring archived files from smithi139:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi139/crash 2024-09-16T14:44:09.905 DEBUG:teuthology.orchestra.run.smithi139:> sudo tar c -f - -C /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash -- . 2024-09-16T14:44:09.916 INFO:teuthology.orchestra.run.smithi139.stderr:tar: /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T14:44:09.916 INFO:teuthology.orchestra.run.smithi139.stderr:tar: Error is not recoverable: exiting now 2024-09-16T14:44:09.918 DEBUG:teuthology.misc:Transferring archived files from smithi162:/var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi162/crash 2024-09-16T14:44:09.919 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash -- . 2024-09-16T14:44:09.929 INFO:teuthology.orchestra.run.smithi162.stderr:tar: /var/lib/ceph/130fbd00-7438-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-16T14:44:09.929 INFO:teuthology.orchestra.run.smithi162.stderr:tar: Error is not recoverable: exiting now 2024-09-16T14:44:09.930 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-16T14:44:09.931 DEBUG:teuthology.orchestra.run.smithi019:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/130fbd00-7438-11ef-bceb-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-16T14:44:09.958 INFO:teuthology.orchestra.run.smithi019.stderr:grep: /var/log/ceph/130fbd00-7438-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-16T14:44:09.960 INFO:tasks.cephadm:Compressing logs... 2024-09-16T14:44:09.960 DEBUG:teuthology.orchestra.run.smithi019:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:10.002 DEBUG:teuthology.orchestra.run.smithi139:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:10.004 DEBUG:teuthology.orchestra.run.smithi162:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:10.011 INFO:teuthology.orchestra.run.smithi019.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T14:44:10.017 INFO:teuthology.orchestra.run.smithi139.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T14:44:10.018 INFO:teuthology.orchestra.run.smithi162.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-16T14:44:10.805 INFO:tasks.cephadm:Archiving logs... 2024-09-16T14:44:10.805 DEBUG:teuthology.misc:Transferring archived files from smithi019:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi019/log 2024-09-16T14:44:10.806 DEBUG:teuthology.orchestra.run.smithi019:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T14:44:10.952 DEBUG:teuthology.misc:Transferring archived files from smithi139:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi139/log 2024-09-16T14:44:10.953 DEBUG:teuthology.orchestra.run.smithi139:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T14:44:11.004 DEBUG:teuthology.misc:Transferring archived files from smithi162:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi162/log 2024-09-16T14:44:11.005 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-16T14:44:11.042 INFO:tasks.cephadm:Removing cluster... 2024-09-16T14:44:11.043 DEBUG:teuthology.orchestra.run.smithi019:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force 2024-09-16T14:44:11.166 INFO:teuthology.orchestra.run.smithi019.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:12.513 DEBUG:teuthology.orchestra.run.smithi139:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force 2024-09-16T14:44:12.638 INFO:teuthology.orchestra.run.smithi139.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:13.982 DEBUG:teuthology.orchestra.run.smithi162:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 130fbd00-7438-11ef-bceb-c7b262605968 --force 2024-09-16T14:44:14.104 INFO:teuthology.orchestra.run.smithi162.stdout:Deleting cluster with fsid: 130fbd00-7438-11ef-bceb-c7b262605968 2024-09-16T14:44:15.426 INFO:tasks.cephadm:Removing cephadm ... 2024-09-16T14:44:15.426 DEBUG:teuthology.orchestra.run.smithi019:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T14:44:15.434 DEBUG:teuthology.orchestra.run.smithi139:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T14:44:15.441 DEBUG:teuthology.orchestra.run.smithi162:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-16T14:44:15.446 INFO:tasks.cephadm:Teardown complete 2024-09-16T14:44:15.446 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-16T14:44:15.458 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-16T14:44:15.459 DEBUG:teuthology.orchestra.run.smithi019:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T14:44:15.478 DEBUG:teuthology.orchestra.run.smithi139:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T14:44:15.486 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-16T14:44:15.571 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-16T14:44:15.579 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-16T14:44:15.580 DEBUG:teuthology.orchestra.run.smithi019:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T14:44:15.584 DEBUG:teuthology.orchestra.run.smithi139:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T14:44:15.586 DEBUG:teuthology.orchestra.run.smithi162:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-16T14:44:15.592 INFO:teuthology.orchestra.run.smithi019.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:44:15.592 INFO:teuthology.orchestra.run.smithi019.stdout:============================================================================== 2024-09-16T14:44:15.592 INFO:teuthology.orchestra.run.smithi019.stdout:*hv01.front.sepi 67.205.162.81 3 u 13 64 377 0.074 -0.491 0.237 2024-09-16T14:44:15.592 INFO:teuthology.orchestra.run.smithi019.stdout:+hv02.front.sepi 63.231.80.2 3 u 5 64 377 0.061 -0.181 0.114 2024-09-16T14:44:15.593 INFO:teuthology.orchestra.run.smithi019.stdout:+hv03.front.sepi 74.6.168.72 3 u 12 64 377 0.097 -0.874 0.129 2024-09-16T14:44:15.593 INFO:teuthology.orchestra.run.smithi019.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout:============================================================================== 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout:+hv01.front.sepi 67.205.162.81 3 u 19 64 377 0.122 -2.059 3.088 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout:*hv02.front.sepi 63.231.80.2 3 u 16 64 377 0.082 -5.865 3.081 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout:+hv03.front.sepi 74.6.168.72 3 u 20 64 377 0.123 -5.504 2.460 2024-09-16T14:44:15.597 INFO:teuthology.orchestra.run.smithi139.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T14:44:15.598 INFO:teuthology.orchestra.run.smithi162.stdout: remote refid st t when poll reach delay offset jitter 2024-09-16T14:44:15.598 INFO:teuthology.orchestra.run.smithi162.stdout:============================================================================== 2024-09-16T14:44:15.598 INFO:teuthology.orchestra.run.smithi162.stdout:*hv01.front.sepi 67.205.162.81 3 u 20 64 377 0.095 -3.296 1.110 2024-09-16T14:44:15.599 INFO:teuthology.orchestra.run.smithi162.stdout:+hv02.front.sepi 63.231.80.2 3 u 3 64 377 0.124 -2.877 1.134 2024-09-16T14:44:15.599 INFO:teuthology.orchestra.run.smithi162.stdout:+hv03.front.sepi 74.6.168.72 3 u 19 64 377 0.089 -4.745 1.488 2024-09-16T14:44:15.599 INFO:teuthology.orchestra.run.smithi162.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-09-16T14:44:15.599 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-16T14:44:15.608 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-16T14:44:15.609 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-16T14:44:15.616 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-16T14:44:15.625 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-16T14:44:15.634 INFO:teuthology.task.internal:Duration was 1466.874978 seconds 2024-09-16T14:44:15.634 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-16T14:44:15.641 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-16T14:44:15.642 DEBUG:teuthology.orchestra.run.smithi019:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T14:44:15.644 DEBUG:teuthology.orchestra.run.smithi139:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T14:44:15.646 DEBUG:teuthology.orchestra.run.smithi162:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-16T14:44:15.682 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-16T14:44:15.682 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi019.front.sepia.ceph.com 2024-09-16T14:44:15.682 DEBUG:teuthology.orchestra.run.smithi019:> 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-16T14:44:15.734 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi139.front.sepia.ceph.com 2024-09-16T14:44:15.735 DEBUG:teuthology.orchestra.run.smithi139:> 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-16T14:44:15.744 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi162.front.sepia.ceph.com 2024-09-16T14:44:15.744 DEBUG:teuthology.orchestra.run.smithi162:> 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-16T14:44:15.754 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-16T14:44:15.755 DEBUG:teuthology.orchestra.run.smithi019:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:15.778 DEBUG:teuthology.orchestra.run.smithi139:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:15.792 DEBUG:teuthology.orchestra.run.smithi162:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-16T14:44:15.830 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-16T14:44:15.830 DEBUG:teuthology.orchestra.run.smithi019:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T14:44:15.866 DEBUG:teuthology.orchestra.run.smithi139:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T14:44:15.870 DEBUG:teuthology.orchestra.run.smithi162:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-16T14:44:15.968 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-16T14:44:15.977 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-16T14:44:15.978 DEBUG:teuthology.orchestra.run.smithi019:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T14:44:15.990 DEBUG:teuthology.orchestra.run.smithi139:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T14:44:16.000 DEBUG:teuthology.orchestra.run.smithi162:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-16T14:44:16.012 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-16T14:44:16.021 DEBUG:teuthology.orchestra.run.smithi019:> 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-16T14:44:16.034 DEBUG:teuthology.orchestra.run.smithi139:> 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-16T14:44:16.041 INFO:teuthology.orchestra.run.smithi019.stdout:kernel.core_pattern = core 2024-09-16T14:44:16.042 DEBUG:teuthology.orchestra.run.smithi162:> 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-16T14:44:16.049 INFO:teuthology.orchestra.run.smithi139.stdout:kernel.core_pattern = core 2024-09-16T14:44:16.066 INFO:teuthology.orchestra.run.smithi162.stdout:kernel.core_pattern = core 2024-09-16T14:44:16.082 DEBUG:teuthology.orchestra.run.smithi019:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T14:44:16.112 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:44:16.113 DEBUG:teuthology.orchestra.run.smithi139:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T14:44:16.117 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:44:16.117 DEBUG:teuthology.orchestra.run.smithi162:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-16T14:44:16.127 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-16T14:44:16.127 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-16T14:44:16.138 INFO:teuthology.task.internal:Transferring archived files... 2024-09-16T14:44:16.138 DEBUG:teuthology.misc:Transferring archived files from smithi019:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi019 2024-09-16T14:44:16.139 DEBUG:teuthology.orchestra.run.smithi019:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T14:44:16.181 DEBUG:teuthology.misc:Transferring archived files from smithi139:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi139 2024-09-16T14:44:16.181 DEBUG:teuthology.orchestra.run.smithi139:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T14:44:16.203 DEBUG:teuthology.misc:Transferring archived files from smithi162:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-15_22:00:02-rados-reef-distro-default-smithi/7906734/remote/smithi162 2024-09-16T14:44:16.203 DEBUG:teuthology.orchestra.run.smithi162:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-16T14:44:16.226 INFO:teuthology.task.internal:Removing archive directory... 2024-09-16T14:44:16.226 DEBUG:teuthology.orchestra.run.smithi019:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T14:44:16.229 DEBUG:teuthology.orchestra.run.smithi139:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T14:44:16.242 DEBUG:teuthology.orchestra.run.smithi162:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-16T14:44:16.272 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-16T14:44:16.283 INFO:teuthology.task.internal:Not uploading archives. 2024-09-16T14:44:16.283 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-16T14:44:16.293 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-16T14:44:16.294 DEBUG:teuthology.orchestra.run.smithi019:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T14:44:16.296 DEBUG:teuthology.orchestra.run.smithi139:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T14:44:16.298 DEBUG:teuthology.orchestra.run.smithi162:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-16T14:44:16.300 INFO:teuthology.orchestra.run.smithi019.stdout: 658728 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 14:44 /home/ubuntu/cephtest 2024-09-16T14:44:16.301 INFO:teuthology.orchestra.run.smithi139.stdout: 658622 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 14:44 /home/ubuntu/cephtest 2024-09-16T14:44:16.321 INFO:teuthology.orchestra.run.smithi162.stdout: 658636 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 16 14:44 /home/ubuntu/cephtest 2024-09-16T14:44:16.322 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-16T14:44:16.332 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-16T14:44:16.353 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/ubuntu_22.04 agent/on mon_election/classic task/test_host_drain} duration: 1466.8749780654907 flavor: default owner: scheduled_teuthology@teuthology success: true 2024-09-16T14:44:16.354 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-16T14:44:16.426 INFO:teuthology.run:pass