2024-04-27T02:41:20.720 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-27T02:41:20.720 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602 --name teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --owner scheduled_teuthology@teuthology --verbose -- /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/orig.config.yaml 2024-04-27T02:41:20.753 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-27T02:41:20.843 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7675602' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) log-only-match: - CEPHADM_ sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 4854 sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a sleep_before_teardown: 0 subset: 40/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_b22e2ebdeb24376882b7bda2a7329c8cccc2276a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a targets: smithi037.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPbYOZq1fwhIcb1u4Y51Nw/pSWIyDl+Kh94xwjXofRsrtf62e24Fc4A6k1f7UMAcTybGO51vGA1ps9aG1CWrmGA= smithi123.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDibFF85pKLpTaJhs9EWos6JMcMeATjely3AFb0lcqz9BETU+YCaeKqUXYiAU/p4rKF2BPRY7O/24hDp6uVk0og= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-26_21:08:03 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-27T02:41:20.844 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_b22e2ebdeb24376882b7bda2a7329c8cccc2276a/qa; will attempt to use it 2024-04-27T02:41:20.844 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_b22e2ebdeb24376882b7bda2a7329c8cccc2276a/qa/tasks 2024-04-27T02:41:20.844 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-27T02:41:20.846 INFO:teuthology.task.internal:Checking packages... 2024-04-27T02:41:20.871 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'b22e2ebdeb24376882b7bda2a7329c8cccc2276a' 2024-04-27T02:41:20.871 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-27T02:41:20.871 INFO:teuthology.packaging:ref: None 2024-04-27T02:41:20.871 INFO:teuthology.packaging:tag: None 2024-04-27T02:41:20.871 INFO:teuthology.packaging:branch: squid 2024-04-27T02:41:20.871 INFO:teuthology.packaging:sha1: b22e2ebdeb24376882b7bda2a7329c8cccc2276a 2024-04-27T02:41:20.871 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-27T02:41:21.161 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2447.gb22e2ebd 2024-04-27T02:41:21.163 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-27T02:41:21.171 INFO:teuthology.task.internal:no buildpackages task found 2024-04-27T02:41:21.171 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-27T02:41:21.185 INFO:teuthology.task.internal:Saving configuration 2024-04-27T02:41:21.198 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-27T02:41:21.208 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-27T02:41:21.229 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi037.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-27 02:36:23.799834', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPbYOZq1fwhIcb1u4Y51Nw/pSWIyDl+Kh94xwjXofRsrtf62e24Fc4A6k1f7UMAcTybGO51vGA1ps9aG1CWrmGA='} 2024-04-27T02:41:21.250 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi123.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-27 02:36:23.798608', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDibFF85pKLpTaJhs9EWos6JMcMeATjely3AFb0lcqz9BETU+YCaeKqUXYiAU/p4rKF2BPRY7O/24hDp6uVk0og='} 2024-04-27T02:41:21.251 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-27T02:41:21.258 INFO:teuthology.task.internal:roles: ubuntu@smithi037.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-27T02:41:21.258 INFO:teuthology.task.internal:roles: ubuntu@smithi123.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-27T02:41:21.258 INFO:teuthology.run_tasks:Running task console_log... 2024-04-27T02:41:21.330 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f2d5ba31ee0>, signals=[15]) 2024-04-27T02:41:21.330 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-27T02:41:21.338 INFO:teuthology.task.internal:Opening connections... 2024-04-27T02:41:21.338 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:41:21.340 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-27T02:41:21.416 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi123.front.sepia.ceph.com 2024-04-27T02:41:21.417 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-27T02:41:21.492 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-27T02:41:21.501 DEBUG:teuthology.orchestra.run.smithi037:> uname -m 2024-04-27T02:41:21.520 INFO:teuthology.orchestra.run.smithi037.stdout:x86_64 2024-04-27T02:41:21.521 DEBUG:teuthology.orchestra.run.smithi037:> cat /etc/os-release 2024-04-27T02:41:21.578 INFO:teuthology.orchestra.run.smithi037.stdout:NAME="CentOS Stream" 2024-04-27T02:41:21.578 INFO:teuthology.orchestra.run.smithi037.stdout:VERSION="9" 2024-04-27T02:41:21.578 INFO:teuthology.orchestra.run.smithi037.stdout:ID="centos" 2024-04-27T02:41:21.578 INFO:teuthology.orchestra.run.smithi037.stdout:ID_LIKE="rhel fedora" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:VERSION_ID="9" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:PLATFORM_ID="platform:el9" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:ANSI_COLOR="0;31" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:LOGO="fedora-logo-icon" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:HOME_URL="https://centos.org/" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-27T02:41:21.579 INFO:teuthology.orchestra.run.smithi037.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-27T02:41:21.580 INFO:teuthology.lock.ops:Updating smithi037.front.sepia.ceph.com on lock server 2024-04-27T02:41:21.609 DEBUG:teuthology.orchestra.run.smithi123:> uname -m 2024-04-27T02:41:21.627 INFO:teuthology.orchestra.run.smithi123.stdout:x86_64 2024-04-27T02:41:21.627 DEBUG:teuthology.orchestra.run.smithi123:> cat /etc/os-release 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:NAME="CentOS Stream" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION="9" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:ID="centos" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:ID_LIKE="rhel fedora" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION_ID="9" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:PLATFORM_ID="platform:el9" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-27T02:41:21.683 INFO:teuthology.orchestra.run.smithi123.stdout:ANSI_COLOR="0;31" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:LOGO="fedora-logo-icon" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:HOME_URL="https://centos.org/" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-27T02:41:21.684 INFO:teuthology.orchestra.run.smithi123.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-27T02:41:21.684 INFO:teuthology.lock.ops:Updating smithi123.front.sepia.ceph.com on lock server 2024-04-27T02:41:21.701 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-27T02:41:21.710 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-27T02:41:21.719 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-27T02:41:21.720 DEBUG:teuthology.orchestra.run.smithi037:> test '!' -e /home/ubuntu/cephtest 2024-04-27T02:41:21.722 DEBUG:teuthology.orchestra.run.smithi123:> test '!' -e /home/ubuntu/cephtest 2024-04-27T02:41:21.739 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-27T02:41:21.746 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-27T02:41:21.746 DEBUG:teuthology.orchestra.run.smithi037:> test -z $(ls -A /var/lib/ceph) 2024-04-27T02:41:21.780 DEBUG:teuthology.orchestra.run.smithi123:> test -z $(ls -A /var/lib/ceph) 2024-04-27T02:41:22.080 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-27T02:41:22.133 INFO:teuthology.run_tasks:Running task kernel... 2024-04-27T02:41:22.150 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-27T02:41:22.150 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-27T02:41:22.150 DEBUG:teuthology.orchestra.run.smithi037:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-27T02:41:22.151 DEBUG:teuthology.orchestra.run.smithi123:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-27T02:41:22.167 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:41:22.167 DEBUG:teuthology.orchestra.run.smithi123:> uname -r 2024-04-27T02:41:22.168 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:41:22.168 DEBUG:teuthology.orchestra.run.smithi037:> uname -r 2024-04-27T02:41:22.225 INFO:teuthology.orchestra.run.smithi123.stdout:5.14.0-437.el9.x86_64 2024-04-27T02:41:22.225 INFO:teuthology.task.kernel:Running kernel on smithi123: 5.14.0-437.el9.x86_64 2024-04-27T02:41:22.225 DEBUG:teuthology.orchestra.run.smithi123:> sudo yum install -y kernel 2024-04-27T02:41:22.226 INFO:teuthology.orchestra.run.smithi037.stdout:5.14.0-437.el9.x86_64 2024-04-27T02:41:22.226 INFO:teuthology.task.kernel:Running kernel on smithi037: 5.14.0-437.el9.x86_64 2024-04-27T02:41:22.227 DEBUG:teuthology.orchestra.run.smithi037:> sudo yum install -y kernel 2024-04-27T02:41:24.795 INFO:teuthology.orchestra.run.smithi037.stdout:CentOS Stream 9 - BaseOS 8.2 MB/s | 8.0 MB 00:00 2024-04-27T02:41:24.815 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - BaseOS 8.3 MB/s | 8.0 MB 00:00 2024-04-27T02:41:27.667 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - AppStream 11 MB/s | 19 MB 00:01 2024-04-27T02:41:27.710 INFO:teuthology.orchestra.run.smithi037.stdout:CentOS Stream 9 - AppStream 10 MB/s | 19 MB 00:01 2024-04-27T02:41:32.967 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - CRB 4.5 MB/s | 6.2 MB 00:01 2024-04-27T02:41:34.851 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - Extras packages 29 kB/s | 16 kB 00:00 2024-04-27T02:41:37.489 INFO:teuthology.orchestra.run.smithi123.stdout:Extra Packages for Enterprise Linux 8.3 MB/s | 21 MB 00:02 2024-04-27T02:41:39.361 INFO:teuthology.orchestra.run.smithi037.stdout:CentOS Stream 9 - CRB 798 kB/s | 6.2 MB 00:07 2024-04-27T02:41:40.986 INFO:teuthology.orchestra.run.smithi037.stdout:CentOS Stream 9 - Extras packages 38 kB/s | 16 kB 00:00 2024-04-27T02:41:42.553 INFO:teuthology.orchestra.run.smithi123.stdout:lab-extras 15 kB/s | 1.7 kB 00:00 2024-04-27T02:41:43.166 INFO:teuthology.orchestra.run.smithi037.stdout:Extra Packages for Enterprise Linux 10 MB/s | 21 MB 00:02 2024-04-27T02:41:44.443 INFO:teuthology.orchestra.run.smithi123.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-27T02:41:44.443 INFO:teuthology.orchestra.run.smithi123.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-04-27T02:41:44.531 INFO:teuthology.orchestra.run.smithi123.stdout:Dependencies resolved. 2024-04-27T02:41:44.532 INFO:teuthology.orchestra.run.smithi123.stdout:Nothing to do. 2024-04-27T02:41:44.532 INFO:teuthology.orchestra.run.smithi123.stdout:Complete! 2024-04-27T02:41:44.649 DEBUG:teuthology.orchestra.run.smithi123:> echo no | sudo yum reinstall kernel || true 2024-04-27T02:41:45.149 INFO:teuthology.orchestra.run.smithi123.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Apr 2024 02:41:42 AM UTC. 2024-04-27T02:41:45.268 INFO:teuthology.orchestra.run.smithi123.stdout:Dependencies resolved. 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout: Package Architecture Version Repository Size 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout:Reinstalling: 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-27T02:41:45.277 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction Summary 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stdout:Total download size: 255 k 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stdout:Installed size: 0 2024-04-27T02:41:45.278 INFO:teuthology.orchestra.run.smithi123.stderr:Operation aborted. 2024-04-27T02:41:45.338 INFO:teuthology.orchestra.run.smithi123.stdout:Is this ok [y/N]: 2024-04-27T02:41:45.339 DEBUG:teuthology.orchestra.run.smithi123:> sudo yum reinstall -y kernel || true 2024-04-27T02:41:45.830 INFO:teuthology.orchestra.run.smithi123.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Apr 2024 02:41:42 AM UTC. 2024-04-27T02:41:45.945 INFO:teuthology.orchestra.run.smithi123.stdout:Dependencies resolved. 2024-04-27T02:41:45.946 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.946 INFO:teuthology.orchestra.run.smithi123.stdout: Package Architecture Version Repository Size 2024-04-27T02:41:45.946 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.946 INFO:teuthology.orchestra.run.smithi123.stdout:Reinstalling: 2024-04-27T02:41:45.946 INFO:teuthology.orchestra.run.smithi123.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction Summary 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout:Total download size: 255 k 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout:Installed size: 0 2024-04-27T02:41:45.947 INFO:teuthology.orchestra.run.smithi123.stdout:Downloading Packages: 2024-04-27T02:41:46.247 INFO:teuthology.orchestra.run.smithi123.stdout:kernel-5.14.0-437.el9.x86_64.rpm 1.4 MB/s | 255 kB 00:00 2024-04-27T02:41:46.247 INFO:teuthology.orchestra.run.smithi123.stdout:-------------------------------------------------------------------------------- 2024-04-27T02:41:46.247 INFO:teuthology.orchestra.run.smithi123.stdout:Total 849 kB/s | 255 kB 00:00 2024-04-27T02:41:46.268 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction check 2024-04-27T02:41:46.459 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction check succeeded. 2024-04-27T02:41:46.460 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction test 2024-04-27T02:41:46.465 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction test succeeded. 2024-04-27T02:41:46.465 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction 2024-04-27T02:41:46.619 INFO:teuthology.orchestra.run.smithi123.stdout: Preparing : 1/1 2024-04-27T02:41:46.698 INFO:teuthology.orchestra.run.smithi123.stdout: Reinstalling : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-27T02:41:46.698 INFO:teuthology.orchestra.run.smithi123.stdout: Cleanup : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:47.408 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:47.408 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout:Reinstalled: 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-5.14.0-437.el9.x86_64 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:41:48.129 INFO:teuthology.orchestra.run.smithi123.stdout:Complete! 2024-04-27T02:41:48.309 DEBUG:teuthology.orchestra.run.smithi123:> rpm -q kernel | sort -rV | head -n 1 2024-04-27T02:41:48.397 INFO:teuthology.orchestra.run.smithi123.stdout:kernel-5.14.0-437.el9.x86_64 2024-04-27T02:41:48.397 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-437.el9.x86_64 2024-04-27T02:41:48.397 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-04-27T02:41:48.397 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-27T02:41:48.397 DEBUG:teuthology.orchestra.run.smithi123:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-27T02:41:48.423 INFO:teuthology.orchestra.run.smithi123.stdout:ttyS1 2024-04-27T02:41:48.443 DEBUG:teuthology.parallel:result is None 2024-04-27T02:41:48.505 INFO:teuthology.orchestra.run.smithi037.stdout:lab-extras 37 kB/s | 1.7 kB 00:00 2024-04-27T02:41:50.420 INFO:teuthology.orchestra.run.smithi037.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-27T02:41:50.420 INFO:teuthology.orchestra.run.smithi037.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-04-27T02:41:50.500 INFO:teuthology.orchestra.run.smithi037.stdout:Dependencies resolved. 2024-04-27T02:41:50.502 INFO:teuthology.orchestra.run.smithi037.stdout:Nothing to do. 2024-04-27T02:41:50.502 INFO:teuthology.orchestra.run.smithi037.stdout:Complete! 2024-04-27T02:41:50.615 DEBUG:teuthology.orchestra.run.smithi037:> echo no | sudo yum reinstall kernel || true 2024-04-27T02:41:51.135 INFO:teuthology.orchestra.run.smithi037.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Apr 2024 02:41:48 AM UTC. 2024-04-27T02:41:51.259 INFO:teuthology.orchestra.run.smithi037.stdout:Dependencies resolved. 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout: Package Architecture Version Repository Size 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:Reinstalling: 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction Summary 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:Total download size: 255 k 2024-04-27T02:41:51.272 INFO:teuthology.orchestra.run.smithi037.stdout:Installed size: 0 2024-04-27T02:41:51.273 INFO:teuthology.orchestra.run.smithi037.stderr:Operation aborted. 2024-04-27T02:41:51.323 INFO:teuthology.orchestra.run.smithi037.stdout:Is this ok [y/N]: 2024-04-27T02:41:51.323 DEBUG:teuthology.orchestra.run.smithi037:> sudo yum reinstall -y kernel || true 2024-04-27T02:41:51.838 INFO:teuthology.orchestra.run.smithi037.stdout:Last metadata expiration check: 0:00:03 ago on Sat 27 Apr 2024 02:41:48 AM UTC. 2024-04-27T02:41:51.958 INFO:teuthology.orchestra.run.smithi037.stdout:Dependencies resolved. 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout: Package Architecture Version Repository Size 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:Reinstalling: 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout: kernel x86_64 5.14.0-437.el9 baseos 255 k 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction Summary 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:Total download size: 255 k 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:Installed size: 0 2024-04-27T02:41:51.959 INFO:teuthology.orchestra.run.smithi037.stdout:Downloading Packages: 2024-04-27T02:41:52.458 INFO:teuthology.orchestra.run.smithi037.stdout:kernel-5.14.0-437.el9.x86_64.rpm 1.1 MB/s | 255 kB 00:00 2024-04-27T02:41:52.458 INFO:teuthology.orchestra.run.smithi037.stdout:-------------------------------------------------------------------------------- 2024-04-27T02:41:52.458 INFO:teuthology.orchestra.run.smithi037.stdout:Total 511 kB/s | 255 kB 00:00 2024-04-27T02:41:52.477 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction check 2024-04-27T02:41:52.672 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction check succeeded. 2024-04-27T02:41:52.672 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction test 2024-04-27T02:41:52.678 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction test succeeded. 2024-04-27T02:41:52.678 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction 2024-04-27T02:41:52.806 INFO:teuthology.orchestra.run.smithi037.stdout: Preparing : 1/1 2024-04-27T02:41:52.867 INFO:teuthology.orchestra.run.smithi037.stdout: Reinstalling : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-27T02:41:52.867 INFO:teuthology.orchestra.run.smithi037.stdout: Cleanup : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:53.562 INFO:teuthology.orchestra.run.smithi037.stdout: Running scriptlet: kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:53.562 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 1/2 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : kernel-5.14.0-437.el9.x86_64 2/2 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout:Reinstalled: 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout: kernel-5.14.0-437.el9.x86_64 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:41:54.255 INFO:teuthology.orchestra.run.smithi037.stdout:Complete! 2024-04-27T02:41:54.429 DEBUG:teuthology.orchestra.run.smithi037:> rpm -q kernel | sort -rV | head -n 1 2024-04-27T02:41:54.477 INFO:teuthology.orchestra.run.smithi037.stdout:kernel-5.14.0-437.el9.x86_64 2024-04-27T02:41:54.477 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-437.el9.x86_64 2024-04-27T02:41:54.477 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-04-27T02:41:54.477 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-27T02:41:54.477 DEBUG:teuthology.orchestra.run.smithi037:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-27T02:41:54.506 INFO:teuthology.orchestra.run.smithi037.stdout:ttyS1 2024-04-27T02:41:54.535 DEBUG:teuthology.parallel:result is None 2024-04-27T02:41:54.535 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-27T02:41:54.550 INFO:teuthology.task.internal:Creating test directory... 2024-04-27T02:41:54.550 DEBUG:teuthology.orchestra.run.smithi037:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-27T02:41:54.578 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-27T02:41:54.595 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-27T02:41:54.602 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-27T02:41:54.608 INFO:teuthology.task.internal:Creating archive directory... 2024-04-27T02:41:54.608 DEBUG:teuthology.orchestra.run.smithi037:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-27T02:41:54.632 DEBUG:teuthology.orchestra.run.smithi123:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-27T02:41:54.670 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-27T02:41:54.677 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-27T02:41:54.677 DEBUG:teuthology.orchestra.run.smithi037:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-27T02:41:54.691 DEBUG:teuthology.orchestra.run.smithi123:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-27T02:41:54.723 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-27T02:41:54.733 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-27T02:41:54.768 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-27T02:41:54.778 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-27T02:41:54.780 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-27T02:41:54.787 INFO:teuthology.task.internal:Configuring sudo... 2024-04-27T02:41:54.787 DEBUG:teuthology.orchestra.run.smithi037:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-27T02:41:54.789 DEBUG:teuthology.orchestra.run.smithi123:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-27T02:41:54.815 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-27T02:41:54.824 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-27T02:41:54.825 DEBUG:teuthology.orchestra.run.smithi037:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-27T02:41:54.854 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-27T02:41:54.871 DEBUG:teuthology.orchestra.run.smithi037:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-27T02:41:54.949 DEBUG:teuthology.orchestra.run.smithi037:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-27T02:41:55.007 DEBUG:teuthology.orchestra.run.smithi037:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-27T02:41:55.089 DEBUG:teuthology.orchestra.run.smithi037:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-27T02:41:55.128 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:41:55.128 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-27T02:41:55.192 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-27T02:41:55.238 DEBUG:teuthology.orchestra.run.smithi123:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-27T02:41:55.283 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-27T02:41:55.365 DEBUG:teuthology.orchestra.run.smithi123:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-27T02:41:55.406 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:41:55.406 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-27T02:41:55.471 DEBUG:teuthology.orchestra.run.smithi037:> sudo service rsyslog restart 2024-04-27T02:41:55.473 DEBUG:teuthology.orchestra.run.smithi123:> sudo service rsyslog restart 2024-04-27T02:41:55.514 INFO:teuthology.orchestra.run.smithi037.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-27T02:41:55.549 INFO:teuthology.orchestra.run.smithi123.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-27T02:41:55.867 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-27T02:41:55.876 INFO:teuthology.task.internal:Starting timer... 2024-04-27T02:41:55.876 INFO:teuthology.run_tasks:Running task pcp... 2024-04-27T02:41:55.885 INFO:teuthology.run_tasks:Running task selinux... 2024-04-27T02:41:55.894 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-27T02:41:55.895 DEBUG:teuthology.orchestra.run.smithi037:> sudo service auditd rotate 2024-04-27T02:41:55.960 INFO:teuthology.orchestra.run.smithi037.stdout:Rotating logs: 2024-04-27T02:41:55.962 DEBUG:teuthology.orchestra.run.smithi123:> sudo service auditd rotate 2024-04-27T02:41:56.016 INFO:teuthology.orchestra.run.smithi123.stdout:Rotating logs: 2024-04-27T02:41:56.018 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-27T02:41:56.018 DEBUG:teuthology.orchestra.run.smithi037:> /usr/sbin/getenforce 2024-04-27T02:41:56.040 INFO:teuthology.orchestra.run.smithi037.stdout:Permissive 2024-04-27T02:41:56.041 DEBUG:teuthology.orchestra.run.smithi123:> /usr/sbin/getenforce 2024-04-27T02:41:56.057 INFO:teuthology.orchestra.run.smithi123.stdout:Permissive 2024-04-27T02:41:56.057 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi037.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi123.front.sepia.ceph.com': 'permissive'} 2024-04-27T02:41:56.057 DEBUG:teuthology.orchestra.run.smithi037:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-27T02:41:56.105 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:41:56.106 DEBUG:teuthology.orchestra.run.smithi123:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-27T02:41:56.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:41:56.132 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-27T02:41:56.132 DEBUG:teuthology.orchestra.run.smithi037:> sudo /usr/sbin/setenforce permissive 2024-04-27T02:41:56.172 DEBUG:teuthology.orchestra.run.smithi123:> sudo /usr/sbin/setenforce permissive 2024-04-27T02:41:56.196 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-27T02:41:56.207 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-27T02:41:56.224 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-27T02:41:56.225 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi037.front.sepia.ceph.com,smithi123.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-27T02:45:29.244 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi037.front.sepia.ceph.com'), Remote(name='ubuntu@smithi123.front.sepia.ceph.com')] 2024-04-27T02:45:29.245 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-27T02:45:29.246 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi037.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-27T02:45:29.320 DEBUG:teuthology.orchestra.run.smithi037:> true 2024-04-27T02:45:29.402 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi037.front.sepia.ceph.com' 2024-04-27T02:45:29.402 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-27T02:45:29.403 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-27T02:45:29.478 DEBUG:teuthology.orchestra.run.smithi123:> true 2024-04-27T02:45:29.569 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-27T02:45:29.570 INFO:teuthology.run_tasks:Running task clock... 2024-04-27T02:45:29.580 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-27T02:45:29.580 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-27T02:45:29.581 DEBUG:teuthology.orchestra.run.smithi037:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-27T02:45:29.583 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-27T02:45:29.583 DEBUG:teuthology.orchestra.run.smithi123:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-27T02:45:29.610 INFO:teuthology.orchestra.run.smithi037.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-27T02:45:29.624 INFO:teuthology.orchestra.run.smithi037.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-27T02:45:29.638 INFO:teuthology.orchestra.run.smithi123.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-27T02:45:29.647 INFO:teuthology.orchestra.run.smithi037.stderr:sudo: ntpd: command not found 2024-04-27T02:45:29.651 INFO:teuthology.orchestra.run.smithi123.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-27T02:45:29.658 INFO:teuthology.orchestra.run.smithi037.stdout:506 Cannot talk to daemon 2024-04-27T02:45:29.672 INFO:teuthology.orchestra.run.smithi037.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-27T02:45:29.674 INFO:teuthology.orchestra.run.smithi123.stderr:sudo: ntpd: command not found 2024-04-27T02:45:29.684 INFO:teuthology.orchestra.run.smithi123.stdout:506 Cannot talk to daemon 2024-04-27T02:45:29.685 INFO:teuthology.orchestra.run.smithi037.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-27T02:45:29.697 INFO:teuthology.orchestra.run.smithi123.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-27T02:45:29.710 INFO:teuthology.orchestra.run.smithi123.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-27T02:45:29.741 INFO:teuthology.orchestra.run.smithi037.stderr:bash: line 1: ntpq: command not found 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:=============================================================================== 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.744 INFO:teuthology.orchestra.run.smithi037.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.766 INFO:teuthology.orchestra.run.smithi123.stderr:bash: line 1: ntpq: command not found 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:=============================================================================== 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.769 INFO:teuthology.orchestra.run.smithi123.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:45:29.770 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-27T02:45:29.781 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-27T02:45:29.781 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:45:29.781 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:45:29.800 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-27T02:45:29.801 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_1 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 664 Links: 1 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:29.856 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:45:28.315668251 +0000 2024-04-27T02:45:29.857 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:10.509915503 +0000 2024-04-27T02:45:29.857 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:10.509915503 +0000 2024-04-27T02:45:29.857 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:10.509915503 +0000 2024-04-27T02:45:29.857 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-27T02:45:29.919 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:45:29.919 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:45:29.919 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000237067 s, 2.2 MB/s 2024-04-27T02:45:29.920 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-27T02:45:29.977 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_2 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:45:28.315668251 +0000 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:10.863910587 +0000 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:10.863910587 +0000 2024-04-27T02:45:30.033 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:10.863910587 +0000 2024-04-27T02:45:30.033 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-27T02:45:30.096 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:45:30.096 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:45:30.096 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000175668 s, 2.9 MB/s 2024-04-27T02:45:30.097 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-27T02:45:30.152 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_3 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:30.208 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:45:28.315668251 +0000 2024-04-27T02:45:30.209 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:11.227905532 +0000 2024-04-27T02:45:30.209 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:11.227905532 +0000 2024-04-27T02:45:30.209 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:11.227905532 +0000 2024-04-27T02:45:30.209 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-27T02:45:30.272 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:45:30.272 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:45:30.272 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000179841 s, 2.8 MB/s 2024-04-27T02:45:30.273 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-27T02:45:30.330 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/vg_nvme/lv_4 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:45:28.315668251 +0000 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:11.564900853 +0000 2024-04-27T02:45:30.385 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:11.564900853 +0000 2024-04-27T02:45:30.386 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:11.564900853 +0000 2024-04-27T02:45:30.386 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-27T02:45:30.447 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:45:30.448 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:45:30.448 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000177341 s, 2.9 MB/s 2024-04-27T02:45:30.449 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-27T02:45:30.505 DEBUG:teuthology.orchestra.run.smithi037:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-27T02:45:30.634 INFO:teuthology.orchestra.run.smithi037.stdout:loop 2024-04-27T02:45:30.636 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_1... 2024-04-27T02:45:30.636 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-27T02:45:30.668 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-27T02:45:30.696 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_11 2024-04-27T02:45:30.720 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_2... 2024-04-27T02:45:30.720 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-27T02:45:30.791 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-27T02:45:30.819 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_21 2024-04-27T02:45:30.853 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_3... 2024-04-27T02:45:30.854 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-27T02:45:30.927 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-27T02:45:30.955 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_31 2024-04-27T02:45:30.977 INFO:tasks.nvme_loop:Connecting nvme_loop smithi037:/dev/vg_nvme/lv_4... 2024-04-27T02:45:30.978 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-27T02:45:31.051 INFO:teuthology.orchestra.run.smithi037.stdout:1 2024-04-27T02:45:31.079 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/vg_nvme/lv_41 2024-04-27T02:45:31.101 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:45:31.101 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:45:31.156 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme list 2024-04-27T02:45:31.220 INFO:teuthology.orchestra.run.smithi037.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-27T02:45:31.220 INFO:teuthology.orchestra.run.smithi037.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-27T02:45:31.220 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme0n1 CVFT5331005T400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-27T02:45:31.220 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme1n1 cd02b378a85466085944 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:31.220 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme2n1 f082d335b87fc8dd21d3 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:31.221 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme3n1 ea9cf84238e077255540 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:31.221 INFO:teuthology.orchestra.run.smithi037.stdout:/dev/nvme4n1 4c0c4a7e55600c4be866 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:31.221 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-27T02:45:31.222 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:45:31.222 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/scratch_devs 2024-04-27T02:45:31.286 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:45:31.286 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:45:31.304 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-27T02:45:31.304 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_1 2024-04-27T02:45:31.362 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-27T02:45:31.362 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:45:28.246954946 +0000 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:06.574549638 +0000 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:06.574549638 +0000 2024-04-27T02:45:31.363 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:06.574549638 +0000 2024-04-27T02:45:31.363 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-27T02:45:31.429 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:45:31.429 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:45:31.429 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000221799 s, 2.3 MB/s 2024-04-27T02:45:31.430 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-27T02:45:31.487 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_2 2024-04-27T02:45:31.544 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:45:28.246954946 +0000 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:06.914540220 +0000 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:06.914540220 +0000 2024-04-27T02:45:31.545 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:06.914540220 +0000 2024-04-27T02:45:31.546 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-27T02:45:31.609 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:45:31.609 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:45:31.609 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000210667 s, 2.4 MB/s 2024-04-27T02:45:31.611 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-27T02:45:31.667 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_3 2024-04-27T02:45:31.723 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-27T02:45:31.723 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:31.723 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-27T02:45:31.723 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:31.724 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:31.724 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:45:28.246954946 +0000 2024-04-27T02:45:31.724 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:07.241531162 +0000 2024-04-27T02:45:31.724 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:07.241531162 +0000 2024-04-27T02:45:31.724 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:07.241531162 +0000 2024-04-27T02:45:31.724 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-27T02:45:31.786 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:45:31.787 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:45:31.787 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000181061 s, 2.8 MB/s 2024-04-27T02:45:31.788 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-27T02:45:31.844 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/vg_nvme/lv_4 2024-04-27T02:45:31.899 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-27T02:45:31.899 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-27T02:45:31.899 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-27T02:45:31.899 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-27T02:45:31.899 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:device_t:s0 2024-04-27T02:45:31.900 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:45:28.246954946 +0000 2024-04-27T02:45:31.900 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:07.575521910 +0000 2024-04-27T02:45:31.900 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:07.575521910 +0000 2024-04-27T02:45:31.900 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:07.575521910 +0000 2024-04-27T02:45:31.900 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-27T02:45:31.963 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:45:31.963 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:45:31.963 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000184243 s, 2.8 MB/s 2024-04-27T02:45:31.964 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-27T02:45:32.020 DEBUG:teuthology.orchestra.run.smithi123:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-04-27T02:45:32.138 INFO:teuthology.orchestra.run.smithi123.stdout:loop 2024-04-27T02:45:32.140 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_1... 2024-04-27T02:45:32.140 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-04-27T02:45:32.170 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-04-27T02:45:32.197 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_11 2024-04-27T02:45:32.220 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_2... 2024-04-27T02:45:32.220 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-04-27T02:45:32.292 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-04-27T02:45:32.319 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_21 2024-04-27T02:45:32.340 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_3... 2024-04-27T02:45:32.341 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-04-27T02:45:32.412 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-04-27T02:45:32.439 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_31 2024-04-27T02:45:32.460 INFO:tasks.nvme_loop:Connecting nvme_loop smithi123:/dev/vg_nvme/lv_4... 2024-04-27T02:45:32.460 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-04-27T02:45:32.531 INFO:teuthology.orchestra.run.smithi123.stdout:1 2024-04-27T02:45:32.557 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/vg_nvme/lv_41 2024-04-27T02:45:32.586 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:45:32.586 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:45:32.641 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme list 2024-04-27T02:45:32.703 INFO:teuthology.orchestra.run.smithi123.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-27T02:45:32.703 INFO:teuthology.orchestra.run.smithi123.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-27T02:45:32.703 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme0n1 PHFT620400YK400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV10171 2024-04-27T02:45:32.704 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme1n1 6c101462796bbbe44a0b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:32.704 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme2n1 985b7efe24eb45370172 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:32.704 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme3n1 71ccb995437e5cd74c75 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:32.704 INFO:teuthology.orchestra.run.smithi123.stdout:/dev/nvme4n1 dece05276d76acc9cbdb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.14.0-4 2024-04-27T02:45:32.705 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-27T02:45:32.705 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:45:32.705 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/scratch_devs 2024-04-27T02:45:32.768 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-27T02:45:32.873 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'log-only-match': ['CEPHADM_'], 'sha1': 'b22e2ebdeb24376882b7bda2a7329c8cccc2276a'} 2024-04-27T02:45:32.873 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a 2024-04-27T02:45:32.874 INFO:tasks.cephadm:Cluster fsid is 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:45:32.874 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-27T02:45:32.874 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-27T02:45:32.874 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi037': '172.21.15.37', 'mon.smithi123': '172.21.15.123'} 2024-04-27T02:45:32.874 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-27T02:45:32.875 DEBUG:teuthology.orchestra.run.smithi037:> sudo hostname $(hostname -s) 2024-04-27T02:45:32.905 DEBUG:teuthology.orchestra.run.smithi123:> sudo hostname $(hostname -s) 2024-04-27T02:45:32.928 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-27T02:45:32.929 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=b22e2ebdeb24376882b7bda2a7329c8cccc2276a 2024-04-27T02:45:33.075 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'b22e2ebdeb24376882b7bda2a7329c8cccc2276a', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54991/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2447-gb22e2ebd', 'node_name': '172.21.5.36+adami06', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2447.gb22e2ebd'}, 'url': 'https://4.chacra.ceph.com/r/ceph/squid/b22e2ebdeb24376882b7bda2a7329c8cccc2276a/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-25 23:00:56.935300', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/squid/b22e2ebdeb24376882b7bda2a7329c8cccc2276a/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-27T02:45:33.293 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref squid, sha1 b22e2ebdeb24376882b7bda2a7329c8cccc2276a from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=b22e2ebdeb24376882b7bda2a7329c8cccc2276a 2024-04-27T02:45:33.294 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/squid/b22e2ebdeb24376882b7bda2a7329c8cccc2276a/centos/9/x86_64/flavors/default/cephadm 2024-04-27T02:45:33.294 DEBUG:teuthology.orchestra.run.smithi037:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/squid/b22e2ebdeb24376882b7bda2a7329c8cccc2276a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:33.943 INFO:teuthology.orchestra.run.smithi037.stdout:-rw-r--r--. 1 ubuntu ubuntu 781407 Apr 27 02:45 /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:33.944 DEBUG:teuthology.orchestra.run.smithi123:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/squid/b22e2ebdeb24376882b7bda2a7329c8cccc2276a/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:34.796 INFO:teuthology.orchestra.run.smithi123.stdout:-rw-r--r--. 1 ubuntu ubuntu 781407 Apr 27 02:45 /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:34.796 DEBUG:teuthology.orchestra.run.smithi037:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:34.816 DEBUG:teuthology.orchestra.run.smithi123:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-27T02:45:34.844 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a on all hosts... 2024-04-27T02:45:34.844 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a pull 2024-04-27T02:45:34.859 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a pull 2024-04-27T02:45:36.327 INFO:teuthology.orchestra.run.smithi037.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a... 2024-04-27T02:45:36.372 INFO:teuthology.orchestra.run.smithi123.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a... 2024-04-27T02:46:24.190 INFO:teuthology.orchestra.run.smithi037.stdout:{ 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout: "ceph_version": "ceph version 19.0.0-2447-gb22e2ebd (b22e2ebdeb24376882b7bda2a7329c8cccc2276a) squid (dev)", 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout: "image_id": "87e5280d5ae87e34552d9b448225db981ca5313b28020853b569ec2cb8ee53ae", 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout: "repo_digests": [ 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:265587011b499c966b9dbaf00ce5756e85851e17df544df961d9e3203c8e39d6" 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout: ] 2024-04-27T02:46:24.191 INFO:teuthology.orchestra.run.smithi037.stdout:} 2024-04-27T02:46:55.531 INFO:teuthology.orchestra.run.smithi123.stdout:{ 2024-04-27T02:46:55.531 INFO:teuthology.orchestra.run.smithi123.stdout: "ceph_version": "ceph version 19.0.0-2447-gb22e2ebd (b22e2ebdeb24376882b7bda2a7329c8cccc2276a) squid (dev)", 2024-04-27T02:46:55.531 INFO:teuthology.orchestra.run.smithi123.stdout: "image_id": "87e5280d5ae87e34552d9b448225db981ca5313b28020853b569ec2cb8ee53ae", 2024-04-27T02:46:55.532 INFO:teuthology.orchestra.run.smithi123.stdout: "repo_digests": [ 2024-04-27T02:46:55.532 INFO:teuthology.orchestra.run.smithi123.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:265587011b499c966b9dbaf00ce5756e85851e17df544df961d9e3203c8e39d6" 2024-04-27T02:46:55.532 INFO:teuthology.orchestra.run.smithi123.stdout: ] 2024-04-27T02:46:55.532 INFO:teuthology.orchestra.run.smithi123.stdout:} 2024-04-27T02:46:55.557 DEBUG:teuthology.orchestra.run.smithi037:> sudo mkdir -p /etc/ceph 2024-04-27T02:46:55.590 DEBUG:teuthology.orchestra.run.smithi123:> sudo mkdir -p /etc/ceph 2024-04-27T02:46:55.617 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 777 /etc/ceph 2024-04-27T02:46:55.658 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 777 /etc/ceph 2024-04-27T02:46:55.681 INFO:tasks.cephadm:Writing seed config... 2024-04-27T02:46:55.682 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-27T02:46:55.683 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-04-27T02:46:55.684 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:46:55.684 DEBUG:teuthology.orchestra.run.smithi037:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-27T02:46:55.715 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 379591b2-0440-11ef-bc93-c7b262605968 [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 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-27T02:46:55.715 DEBUG:teuthology.orchestra.run.smithi037:mon.smithi037> sudo journalctl -f -n 0 -u ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service 2024-04-27T02:46:55.757 INFO:tasks.cephadm:Bootstrapping... 2024-04-27T02:46:55.757 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a -v bootstrap --fsid 379591b2-0440-11ef-bc93-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-ip 172.21.15.37 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:46:55.958 INFO:teuthology.orchestra.run.smithi037.stdout:-------------------------------------------------------------------------------- 2024-04-27T02:46:55.958 INFO:teuthology.orchestra.run.smithi037.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a', '-v', 'bootstrap', '--fsid', '379591b2-0440-11ef-bc93-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-ip', '172.21.15.37', '--skip-admin-label'] 2024-04-27T02:46:55.959 INFO:teuthology.orchestra.run.smithi037.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-27T02:46:55.959 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying podman|docker is present... 2024-04-27T02:46:55.985 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-27T02:46:55.985 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying lvm2 is present... 2024-04-27T02:46:55.985 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying time synchronization is in place... 2024-04-27T02:46:55.992 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-27T02:46:55.992 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-27T02:46:55.998 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-27T02:46:55.998 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:46:56.005 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout enabled 2024-04-27T02:46:56.011 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout active 2024-04-27T02:46:56.011 INFO:teuthology.orchestra.run.smithi037.stdout:Unit chronyd.service is enabled and running 2024-04-27T02:46:56.011 INFO:teuthology.orchestra.run.smithi037.stdout:Repeating the final host check... 2024-04-27T02:46:56.035 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-27T02:46:56.035 INFO:teuthology.orchestra.run.smithi037.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-27T02:46:56.035 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl is present 2024-04-27T02:46:56.036 INFO:teuthology.orchestra.run.smithi037.stdout:lvcreate is present 2024-04-27T02:46:56.042 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-27T02:46:56.042 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-27T02:46:56.048 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-27T02:46:56.048 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:46:56.054 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout enabled 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout active 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Unit chronyd.service is enabled and running 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Host looks OK 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Cluster fsid: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Acquiring lock 139679281256240 on /run/cephadm/379591b2-0440-11ef-bc93-c7b262605968.lock 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Lock 139679281256240 acquired on /run/cephadm/379591b2-0440-11ef-bc93-c7b262605968.lock 2024-04-27T02:46:56.061 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying IP 172.21.15.37 port 3300 ... 2024-04-27T02:46:56.062 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying IP 172.21.15.37 port 6789 ... 2024-04-27T02:46:56.062 INFO:teuthology.orchestra.run.smithi037.stdout:Base mon IP(s) is [172.21.15.37:3300, 172.21.15.37:6789], mon addrv is [v2:172.21.15.37:3300,v1:172.21.15.37:6789] 2024-04-27T02:46:56.065 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.37 metric 100 2024-04-27T02:46:56.065 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.37 metric 100 2024-04-27T02:46:56.068 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-27T02:46:56.068 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-27T02:46:56.068 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-27T02:46:56.070 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7794/64 scope link noprefixroute 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:Mon IP `172.21.15.37` is in CIDR network `172.21.0.0/20` 2024-04-27T02:46:56.071 INFO:teuthology.orchestra.run.smithi037.stdout:Mon IP `172.21.15.37` is in CIDR network `172.21.0.0/20` 2024-04-27T02:46:56.072 INFO:teuthology.orchestra.run.smithi037.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-27T02:46:56.072 INFO:teuthology.orchestra.run.smithi037.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-27T02:46:56.072 INFO:teuthology.orchestra.run.smithi037.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a... 2024-04-27T02:46:57.431 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stdout 87e5280d5ae87e34552d9b448225db981ca5313b28020853b569ec2cb8ee53ae 2024-04-27T02:46:57.431 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a... 2024-04-27T02:46:57.431 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Getting image source signatures 2024-04-27T02:46:57.432 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Copying blob sha256:8cad468f23ab438b6f898c52382f29d2bf4f5542ae8dbbba19c3cda86356dd4f 2024-04-27T02:46:57.432 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Copying blob sha256:3d665f4c032644be9cae748af04bee69f2bfe96cdc3616dabe0ab17899633ab5 2024-04-27T02:46:57.432 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Copying config sha256:87e5280d5ae87e34552d9b448225db981ca5313b28020853b569ec2cb8ee53ae 2024-04-27T02:46:57.432 INFO:teuthology.orchestra.run.smithi037.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-27T02:46:58.318 INFO:teuthology.orchestra.run.smithi037.stdout:ceph: stdout ceph version 19.0.0-2447-gb22e2ebd (b22e2ebdeb24376882b7bda2a7329c8cccc2276a) squid (dev) 2024-04-27T02:46:58.318 INFO:teuthology.orchestra.run.smithi037.stdout:Ceph version: ceph version 19.0.0-2447-gb22e2ebd (b22e2ebdeb24376882b7bda2a7329c8cccc2276a) squid (dev) 2024-04-27T02:46:58.318 INFO:teuthology.orchestra.run.smithi037.stdout:Extracting ceph user uid/gid from container image... 2024-04-27T02:46:59.302 INFO:teuthology.orchestra.run.smithi037.stdout:stat: stdout 167 167 2024-04-27T02:46:59.302 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial keys... 2024-04-27T02:47:00.239 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQAjZyxmqzL/JRAAh28h0DDV9bb1ZlO/yqsDRw== 2024-04-27T02:47:01.210 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQAkZyxmA+zhIhAA30N/B2vzCl3f9OUn4AAZ8A== 2024-04-27T02:47:02.075 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph-authtool: stdout AQAlZyxm+ntFIBAAc0CydKC+TpVolieGFPoJ4g== 2024-04-27T02:47:02.076 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial monmap... 2024-04-27T02:47:03.364 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:monmaptool for smithi037 [v2:172.21.15.37:3300,v1:172.21.15.37:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:setting min_mon_release = quincy 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: set fsid to 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:47:03.365 INFO:teuthology.orchestra.run.smithi037.stdout:Creating mon... 2024-04-27T02:47:04.328 INFO:teuthology.orchestra.run.smithi037.stdout:create mon.smithi037 on 2024-04-27T02:47:04.816 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-27T02:47:05.048 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-379591b2-0440-11ef-bc93-c7b262605968.target → /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968.target. 2024-04-27T02:47:05.049 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-379591b2-0440-11ef-bc93-c7b262605968.target → /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968.target. 2024-04-27T02:47:05.340 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037 2024-04-27T02:47:05.341 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to reset failed state of unit ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service: Unit ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service not loaded. 2024-04-27T02:47:05.521 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968.target.wants/ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service → /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968@.service. 2024-04-27T02:47:06.028 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-27T02:47:06.028 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout disabled 2024-04-27T02:47:06.035 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-27T02:47:06.035 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:47:06.035 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld.service is not enabled 2024-04-27T02:47:06.035 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to enable service . firewalld.service is not available 2024-04-27T02:47:06.036 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mon to start... 2024-04-27T02:47:06.036 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mon... 2024-04-27T02:47:07.096 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:07 smithi037 ceph-mon[21953]: from='client.? 172.21.15.37:0/4102716277' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout cluster: 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout id: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout services: 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi037 (age 0.548474s) 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout data: 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-27T02:47:07.100 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-27T02:47:07.101 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout pgs: 2024-04-27T02:47:07.101 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:07.101 INFO:teuthology.orchestra.run.smithi037.stdout:mon is available 2024-04-27T02:47:07.101 INFO:teuthology.orchestra.run.smithi037.stdout:Assimilating anything we can from ceph.conf... 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [global] 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout fsid = 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.37:3300,v1:172.21.15.37:6789] 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-27T02:47:08.157 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [osd] 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-27T02:47:08.158 INFO:teuthology.orchestra.run.smithi037.stdout:Generating new minimal ceph.conf... 2024-04-27T02:47:08.238 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:08 smithi037 ceph-mon[21953]: from='client.? 172.21.15.37:0/4113479147' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-27T02:47:08.238 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:08 smithi037 ceph-mon[21953]: from='client.? 172.21.15.37:0/4113479147' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-27T02:47:09.258 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:09 smithi037 ceph-mon[21953]: from='client.? 172.21.15.37:0/605678123' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:47:09.262 INFO:teuthology.orchestra.run.smithi037.stdout:Restarting the monitor... 2024-04-27T02:47:09.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:09 smithi037 systemd[1]: Stopping Ceph mon.smithi037 for 379591b2-0440-11ef-bc93-c7b262605968... 2024-04-27T02:47:10.015 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:09 smithi037 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037[21949]: 2024-04-27T02:47:09.550+0000 7f0f38a20700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi037 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-27T02:47:10.015 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:09 smithi037 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037[21949]: 2024-04-27T02:47:09.550+0000 7f0f38a20700 -1 mon.smithi037@0(leader) e1 *** Got Signal Terminated *** 2024-04-27T02:47:10.015 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:09 smithi037 podman[22199]: 2024-04-27 02:47:09.775737595 +0000 UTC m=+0.333486068 container died 28b0f44e8db19064b839266588ac77000d3c8638f190e705c3c3772280ffe456 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=squid-b22e2eb, org.label-schema.build-date=20240424, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b) 2024-04-27T02:47:10.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 podman[22199]: 2024-04-27 02:47:10.11407028 +0000 UTC m=+0.671818762 container cleanup 28b0f44e8db19064b839266588ac77000d3c8638f190e705c3c3772280ffe456 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240424, ceph=True, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, RELEASE=squid-b22e2eb) 2024-04-27T02:47:10.321 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 bash[22199]: ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037 2024-04-27T02:47:10.574 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 podman[22213]: 2024-04-27 02:47:10.331850256 +0000 UTC m=+0.554414963 container remove 28b0f44e8db19064b839266588ac77000d3c8638f190e705c3c3772280ffe456 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240424, RELEASE=squid-b22e2eb, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, maintainer=Guillaume Abrioux ) 2024-04-27T02:47:10.888 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 systemd[1]: ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service: Deactivated successfully. 2024-04-27T02:47:10.888 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 systemd[1]: Stopped Ceph mon.smithi037 for 379591b2-0440-11ef-bc93-c7b262605968. 2024-04-27T02:47:10.889 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 systemd[1]: Starting Ceph mon.smithi037 for 379591b2-0440-11ef-bc93-c7b262605968... 2024-04-27T02:47:10.889 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 podman[22307]: 2024-04-27 02:47:10.790723139 +0000 UTC m=+0.102018090 container create 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240424, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, RELEASE=squid-b22e2eb, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, org.label-schema.schema-version=1.0) 2024-04-27T02:47:10.889 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:10 smithi037 podman[22307]: 2024-04-27 02:47:10.707080833 +0000 UTC m=+0.018375804 image pull 87e5280d5ae87e34552d9b448225db981ca5313b28020853b569ec2cb8ee53ae quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a 2024-04-27T02:47:11.086 INFO:teuthology.orchestra.run.smithi037.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 podman[22307]: 2024-04-27 02:47:11.018116176 +0000 UTC m=+0.329411128 container init 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, org.label-schema.build-date=20240424, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, RELEASE=squid-b22e2eb, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=) 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 podman[22307]: 2024-04-27 02:47:11.021200787 +0000 UTC m=+0.332495740 container start 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, RELEASE=squid-b22e2eb, GIT_BRANCH=HEAD, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, org.label-schema.build-date=20240424, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: set uid:gid to 167:167 (ceph:ceph) 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: ceph version 19.0.0-2447-gb22e2ebd (b22e2ebdeb24376882b7bda2a7329c8cccc2276a) squid (dev), process ceph-mon, pid 2 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: pidfile_write: ignore empty --pid-file 2024-04-27T02:47:11.211 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: load: jerasure load: lrc 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: RocksDB version: 7.9.2 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Git sha 0 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Compile date 2024-04-25 16:43:49 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: DB SUMMARY 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: DB Session ID: YB57I0BJ64ZITR7OA7ZU 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: CURRENT file: CURRENT 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: IDENTITY file: IDENTITY 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi037/store.db dir, Total Num: 1, files: 000008.sst 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi037/store.db: 000009.log size: 89037 ; 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.error_if_exists: 0 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.create_if_missing: 0 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.paranoid_checks: 1 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-27T02:47:11.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-27T02:47:11.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-27T02:47:11.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.env: 0x555985d99c60 2024-04-27T02:47:11.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.fs: PosixFileSystem 2024-04-27T02:47:11.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.info_log: 0x555987e95960 2024-04-27T02:47:11.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_file_opening_threads: 16 2024-04-27T02:47:11.214 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.statistics: (nil) 2024-04-27T02:47:11.214 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.use_fsync: 0 2024-04-27T02:47:11.214 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_log_file_size: 0 2024-04-27T02:47:11.214 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.keep_log_file_num: 1000 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.recycle_log_file_num: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_fallocate: 1 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_mmap_reads: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_mmap_writes: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.use_direct_reads: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.create_missing_column_families: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.db_log_dir: 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.wal_dir: 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-27T02:47:11.215 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.advise_random_on_open: 1 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.db_write_buffer_size: 0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.write_buffer_manager: 0x555987e681e0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.rate_limiter: (nil) 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.wal_recovery_mode: 2 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enable_thread_tracking: 0 2024-04-27T02:47:11.216 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enable_pipelined_write: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.unordered_write: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.row_cache: None 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.wal_filter: None 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_ingest_behind: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.two_write_queues: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.manual_wal_flush: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.wal_compression: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.atomic_flush: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-27T02:47:11.217 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.log_readahead_size: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.best_efforts_recovery: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.allow_data_in_errors: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.db_host_id: __hostname__ 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_background_jobs: 2 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_background_compactions: -1 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_subcompactions: 1 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_total_wal_size: 0 2024-04-27T02:47:11.218 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_open_files: -1 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bytes_per_sync: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_readahead_size: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_background_flushes: -1 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Compression algorithms supported: 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kZSTD supported: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kXpressCompression supported: 0 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kLZ4HCCompression supported: 1 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kZlibCompression supported: 1 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kSnappyCompression supported: 1 2024-04-27T02:47:11.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kLZ4Compression supported: 1 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: kBZip2Compression supported: 0 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000010 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.merge_operator: 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_filter: None 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_filter_factory: None 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.sst_partitioner_factory: None 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555987e95a60) 2024-04-27T02:47:11.220 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: cache_index_and_filter_blocks: 1 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: pin_top_level_index_and_filter: 1 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: index_type: 0 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: data_block_index_type: 0 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: index_shortening: 1 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: checksum: 4 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: no_block_cache: 0 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_cache: 0x555987e99090 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_cache_name: BinnedLRUCache 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_cache_options: 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: capacity : 536870912 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: num_shard_bits : 4 2024-04-27T02:47:11.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: strict_capacity_limit : 0 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: high_pri_pool_ratio: 0.000 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_cache_compressed: (nil) 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: persistent_cache: (nil) 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_size: 4096 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_size_deviation: 10 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_restart_interval: 16 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: index_block_restart_interval: 1 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: metadata_block_size: 4096 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: partition_filters: 0 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: use_delta_encoding: 1 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: filter_policy: bloomfilter 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: whole_key_filtering: 1 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: verify_compression: 0 2024-04-27T02:47:11.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: read_amp_bytes_per_bit: 0 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: format_version: 5 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: enable_index_compression: 1 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: block_align: 0 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: max_auto_readahead_size: 262144 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: prepopulate_block_cache: 0 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: initial_auto_readahead_size: 8192 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: num_file_reads_for_auto_readahead: 2 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.write_buffer_size: 33554432 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_write_buffer_number: 2 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression: NoCompression 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression: Disabled 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.prefix_extractor: nullptr 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.num_levels: 7 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-27T02:47:11.223 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.level: 32767 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.strategy: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-27T02:47:11.224 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.enabled: false 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.target_file_size_base: 67108864 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-27T02:47:11.225 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.arena_block_size: 1048576 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.disable_auto_compactions: 0 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-27T02:47:11.226 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.table_properties_collectors: 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.inplace_update_support: 0 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.bloom_locality: 0 2024-04-27T02:47:11.227 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.max_successive_merges: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.paranoid_file_checks: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.force_consistency_checks: 1 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.report_bg_io_stats: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.ttl: 2592000 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enable_blob_files: false 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.min_blob_size: 0 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_file_size: 268435456 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-27T02:47:11.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.blob_file_starting_level: 0 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi037/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6b609aa5-8c79-451d-ac04-8b9b3c0dd4ff 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: EVENT_LOG_v1 {"time_micros": 1714186031050577, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: EVENT_LOG_v1 {"time_micros": 1714186031051468, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85737, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 256, "table_properties": {"data_size": 83910, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10058, "raw_average_key_size": 46, "raw_value_size": 78141, "raw_average_value_size": 363, "num_data_blocks": 11, "num_entries": 215, "num_filter_entries": 215, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1714186031, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "6b609aa5-8c79-451d-ac04-8b9b3c0dd4ff", "db_session_id": "YB57I0BJ64ZITR7OA7ZU", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: EVENT_LOG_v1 {"time_micros": 1714186031051551, "job": 1, "event": "recovery_finished"} 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi037/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x555987f8a000 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: DB pointer 0x555987f74000 2024-04-27T02:47:11.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: ** DB Stats ** 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: ** Compaction Stats [default] ** 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: L0 2/0 85.60 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 154.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-27T02:47:11.230 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Sum 2/0 85.60 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 154.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 154.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: ** Compaction Stats [default] ** 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 154.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-27T02:47:11.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Cumulative compaction: 0.00 GB write, 27.30 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Interval compaction: 0.00 GB write, 27.30 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Block cache BinnedLRUCache@0x555987e99090#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: starting mon.smithi037 rank 0 at public addrs [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] at bind addrs [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi037 fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???) e1 preinit fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).mds e1 new map 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).mds e1 print_map 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: e1 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-27T02:47:11.232 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: legacy client fscid: -1 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout: No filesystems configured 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 bash[22307]: 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 systemd[1]: Started Ceph mon.smithi037 for 379591b2-0440-11ef-bc93-c7b262605968. 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mon.smithi037 is new leader, mons smithi037 in quorum (ranks 0) 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: monmap epoch 1 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: last_changed 2024-04-27T02:47:02.434928+0000 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: created 2024-04-27T02:47:02.434928+0000 2024-04-27T02:47:11.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: min_mon_release 19 (squid) 2024-04-27T02:47:11.234 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: election_strategy: 1 2024-04-27T02:47:11.234 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-27T02:47:11.234 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: fsmap 2024-04-27T02:47:11.234 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: osdmap e1: 0 total, 0 up, 0 in 2024-04-27T02:47:11.234 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:11 smithi037 ceph-mon[22326]: mgrmap e1: no daemons active 2024-04-27T02:47:12.184 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-27T02:47:12.205 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:47:12.205 INFO:teuthology.orchestra.run.smithi037.stdout:Creating mgr... 2024-04-27T02:47:12.206 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-27T02:47:12.207 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-27T02:47:12.207 INFO:teuthology.orchestra.run.smithi037.stdout:Verifying port 0.0.0.0:8443 ... 2024-04-27T02:47:12.488 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-379591b2-0440-11ef-bc93-c7b262605968@mgr.smithi037.opdlyg 2024-04-27T02:47:12.488 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Failed to reset failed state of unit ceph-379591b2-0440-11ef-bc93-c7b262605968@mgr.smithi037.opdlyg.service: Unit ceph-379591b2-0440-11ef-bc93-c7b262605968@mgr.smithi037.opdlyg.service not loaded. 2024-04-27T02:47:12.655 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968.target.wants/ceph-379591b2-0440-11ef-bc93-c7b262605968@mgr.smithi037.opdlyg.service → /etc/systemd/system/ceph-379591b2-0440-11ef-bc93-c7b262605968@.service. 2024-04-27T02:47:12.963 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:12 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2709648101' entity='client.admin' 2024-04-27T02:47:13.160 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-27T02:47:13.160 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout disabled 2024-04-27T02:47:13.167 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-27T02:47:13.167 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:47:13.167 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld.service is not enabled 2024-04-27T02:47:13.167 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to enable service . firewalld.service is not available 2024-04-27T02:47:13.176 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-27T02:47:13.176 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout disabled 2024-04-27T02:47:13.183 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-27T02:47:13.184 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:47:13.184 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld.service is not enabled 2024-04-27T02:47:13.184 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-04-27T02:47:13.184 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr to start... 2024-04-27T02:47:13.184 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr... 2024-04-27T02:47:13.884 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:13 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/28177146' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "379591b2-0440-11ef-bc93-c7b262605968", 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-27T02:47:14.248 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-27T02:47:14.249 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-27T02:47:14.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-27T02:47:14.253 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.253 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-27T02:47:14.253 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-27T02:47:14.253 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-27T02:47:14.253 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-27T02:47:14.254 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-27T02:47:05.996756+0000", 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:14.255 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (1/15)... 2024-04-27T02:47:17.062 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:16 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2916749775' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "379591b2-0440-11ef-bc93-c7b262605968", 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-27T02:47:17.372 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-27T02:47:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-27T02:47:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-27T02:47:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-27T02:47:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-27T02:47:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-27T02:47:17.377 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.377 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-27T02:47:17.377 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-27T02:47:17.377 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-27T02:47:17.377 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-27T02:47:17.378 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-27T02:47:05.996756+0000", 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:17.379 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (2/15)... 2024-04-27T02:47:20.265 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:19 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1678525021' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-27T02:47:20.511 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:20.511 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "379591b2-0440-11ef-bc93-c7b262605968", 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:20.512 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-27T02:47:20.513 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-27T02:47:20.517 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-27T02:47:20.518 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-27T02:47:05.996756+0000", 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:20.519 INFO:teuthology.orchestra.run.smithi037.stdout:mgr not available, waiting (3/15)... 2024-04-27T02:47:21.265 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: Activating manager daemon smithi037.opdlyg 2024-04-27T02:47:21.265 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: mgrmap e2: smithi037.opdlyg(active, starting, since 0.00337504s) 2024-04-27T02:47:21.265 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi037.opdlyg", "id": "smithi037.opdlyg"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: Manager daemon smithi037.opdlyg is now available 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/mirror_snapshot_schedule"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/trash_purge_schedule"}]: dispatch 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:21.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:20 smithi037 ceph-mon[22326]: from='mgr.14100 172.21.15.37:0/1521914372' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:22.640 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:22 smithi037 ceph-mon[22326]: mgrmap e3: smithi037.opdlyg(active, since 1.00928s) 2024-04-27T02:47:23.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:23 smithi037 ceph-mon[22326]: mgrmap e4: smithi037.opdlyg(active, since 2s) 2024-04-27T02:47:23.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:23 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1621284706' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsid": "379591b2-0440-11ef-bc93-c7b262605968", 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "health": { 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-27T02:47:24.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 0 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "smithi037" 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "quorum_age": 12, 2024-04-27T02:47:24.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-27T02:47:24.003 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-27T02:47:24.004 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-27T02:47:24.007 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-27T02:47:24.008 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "restful" 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ], 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "modified": "2024-04-27T02:47:05.996756+0000", 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout }, 2024-04-27T02:47:24.009 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-27T02:47:24.010 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:24.010 INFO:teuthology.orchestra.run.smithi037.stdout:mgr is available 2024-04-27T02:47:24.992 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:24 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/750191482' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [global] 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout fsid = 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-27T02:47:25.256 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 2024-04-27T02:47:25.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout [osd] 2024-04-27T02:47:25.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-27T02:47:25.257 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-27T02:47:25.257 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling cephadm module... 2024-04-27T02:47:26.265 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:26 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2010729369' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-27T02:47:27.262 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:27 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2010729369' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-27T02:47:27.262 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:27 smithi037 ceph-mon[22326]: mgrmap e5: smithi037.opdlyg(active, since 5s) 2024-04-27T02:47:28.000 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "active_name": "smithi037.opdlyg", 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for the mgr to restart... 2024-04-27T02:47:28.001 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr epoch 5... 2024-04-27T02:47:28.252 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:28 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/765050982' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-27T02:47:33.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: Active manager daemon smithi037.opdlyg restarted 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: Activating manager daemon smithi037.opdlyg 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: osdmap e2: 0 total, 0 up, 0 in 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: mgrmap e6: smithi037.opdlyg(active, starting, since 0.00355565s) 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi037.opdlyg", "id": "smithi037.opdlyg"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: Manager daemon smithi037.opdlyg is now available 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:47:33.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:33 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:47:34.439 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:34 smithi037 ceph-mon[22326]: Found migration_current of "None". Setting to last migration. 2024-04-27T02:47:34.439 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:34 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/mirror_snapshot_schedule"}]: dispatch 2024-04-27T02:47:34.439 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:34 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/trash_purge_schedule"}]: dispatch 2024-04-27T02:47:34.439 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:34 smithi037 ceph-mon[22326]: mgrmap e7: smithi037.opdlyg(active, since 1.00507s) 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:mgr epoch 5 is available 2024-04-27T02:47:34.682 INFO:teuthology.orchestra.run.smithi037.stdout:Setting orchestrator backend to cephadm... 2024-04-27T02:47:35.390 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: [27/Apr/2024:02:47:34] ENGINE Bus STARTING 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: [27/Apr/2024:02:47:35] ENGINE Serving on http://172.21.15.37:8765 2024-04-27T02:47:35.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:35 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:47:36.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: [27/Apr/2024:02:47:35] ENGINE Serving on https://172.21.15.37:7150 2024-04-27T02:47:36.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: [27/Apr/2024:02:47:35] ENGINE Bus STARTED 2024-04-27T02:47:36.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: mgrmap e8: smithi037.opdlyg(active, since 2s) 2024-04-27T02:47:36.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:36.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:36.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:36 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:47:37.241 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:37 smithi037 ceph-mon[22326]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:37.244 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-27T02:47:37.244 INFO:teuthology.orchestra.run.smithi037.stdout:Generating ssh key... 2024-04-27T02:47:38.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:38 smithi037 ceph-mon[22326]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:38.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:38 smithi037 ceph-mon[22326]: Generating ssh key... 2024-04-27T02:47:39.515 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:39 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:39.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:39 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:40.081 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf557pAyn6Q/doNPHtgrCFkCh6Ww7OG4log+toUNQE63fcEm3rCprORXks4gGWm/dw2j/xWjd2aLvsrc/vSayVD5BB5DWbPp01OdCHk9CwfN+3cY0OkieJs0OxcXhCM1tSoBskInf36t+aSc3VUGeD6gTH620LbGr3ujeF+dY3S132y11jU7za+GqyCG85j6fyN77F0Zn1OjVuGJyHFxDxa/8PHs0Y1gRQoDK64MMqiwROCohlmV/zvmcJ04pymewafCxVLykWwwDOOC3eDKe9qF3ha9V4JOyB2sw2LK0rlME1IE64F+3aaVF1DJcnnitBUHs1YRRP40M9kZYLEoDkHDgw6q6bzHGYQ1umiiiQdjJ5ONtwVgdGQvpGNm3VBek2s2LEJFxOhKRedi6l1b8IwE5e842vZv6D9egwOIDX32IwhWNeUe1d8bMWVOrdOSUAtHIKo6KibY0A3D59uFR0p2IxhrKMgd3dbzVwC3q/0t3349O4yGC//Fuiq2DYZ7E= ceph-379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:47:40.082 INFO:teuthology.orchestra.run.smithi037.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-27T02:47:40.082 INFO:teuthology.orchestra.run.smithi037.stdout:Adding key to root@localhost authorized_keys... 2024-04-27T02:47:40.082 INFO:teuthology.orchestra.run.smithi037.stdout:Adding host smithi037... 2024-04-27T02:47:40.506 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:40 smithi037 ceph-mon[22326]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:41.388 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:41 smithi037 ceph-mon[22326]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi037", "addr": "172.21.15.37", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:42.766 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:42 smithi037 ceph-mon[22326]: Deploying cephadm binary to smithi037 2024-04-27T02:47:45.647 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Added host 'smithi037' with addr '172.21.15.37' 2024-04-27T02:47:45.647 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying mon service with default placement... 2024-04-27T02:47:46.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:46 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:46.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:46 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:47:46.855 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-27T02:47:46.856 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying mgr service with default placement... 2024-04-27T02:47:47.205 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:47 smithi037 ceph-mon[22326]: Added host smithi037 2024-04-27T02:47:47.206 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:47 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:48.240 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-27T02:47:48.240 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying crash service with default placement... 2024-04-27T02:47:48.362 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:48 smithi037 ceph-mon[22326]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:48.362 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:48 smithi037 ceph-mon[22326]: Saving service mon spec with placement count:5 2024-04-27T02:47:48.363 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:48 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:49.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:49 smithi037 ceph-mon[22326]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:49.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:49 smithi037 ceph-mon[22326]: Saving service mgr spec with placement count:2 2024-04-27T02:47:49.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:49 smithi037 ceph-mon[22326]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:49.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:49 smithi037 ceph-mon[22326]: Saving service crash spec with placement * 2024-04-27T02:47:49.243 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:49 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:49.816 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-04-27T02:47:49.816 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying ceph-exporter service with default placement... 2024-04-27T02:47:50.499 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:50 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:50.500 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:50 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:51.265 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-04-27T02:47:51.265 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying prometheus service with default placement... 2024-04-27T02:47:51.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:51 smithi037 ceph-mon[22326]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:51.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:51 smithi037 ceph-mon[22326]: Saving service ceph-exporter spec with placement * 2024-04-27T02:47:51.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:51 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:52.607 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-04-27T02:47:52.607 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying grafana service with default placement... 2024-04-27T02:47:53.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:53 smithi037 ceph-mon[22326]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:53.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:53 smithi037 ceph-mon[22326]: Saving service prometheus spec with placement count:1 2024-04-27T02:47:53.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:53 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:53.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:53 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:53.976 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-04-27T02:47:53.976 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying node-exporter service with default placement... 2024-04-27T02:47:54.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:54 smithi037 ceph-mon[22326]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:47:54.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:54 smithi037 ceph-mon[22326]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:54.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:54 smithi037 ceph-mon[22326]: Saving service grafana spec with placement count:1 2024-04-27T02:47:54.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:54 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:54.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:54 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:55.250 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-04-27T02:47:55.250 INFO:teuthology.orchestra.run.smithi037.stdout:Deploying alertmanager service with default placement... 2024-04-27T02:47:55.895 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:55 smithi037 ceph-mon[22326]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:55.895 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:55 smithi037 ceph-mon[22326]: Saving service node-exporter spec with placement * 2024-04-27T02:47:55.895 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:55 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:56.999 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:56 smithi037 ceph-mon[22326]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:47:57.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:56 smithi037 ceph-mon[22326]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:47:57.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:56 smithi037 ceph-mon[22326]: Saving service alertmanager spec with placement count:1 2024-04-27T02:47:57.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:56 smithi037 ceph-mon[22326]: from='mgr.14120 172.21.15.37:0/303360498' entity='mgr.smithi037.opdlyg' 2024-04-27T02:47:57.002 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-04-27T02:47:58.937 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:58 smithi037 ceph-mon[22326]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:47:58.937 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:58 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3480690066' entity='client.admin' 2024-04-27T02:47:59.455 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling the dashboard module... 2024-04-27T02:48:00.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:47:59 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3555516279' entity='client.admin' 2024-04-27T02:48:01.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:00 smithi037 ceph-mon[22326]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:01.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:00 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/171933020' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-27T02:48:02.251 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:01 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/171933020' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-27T02:48:02.251 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:01 smithi037 ceph-mon[22326]: mgrmap e9: smithi037.opdlyg(active, since 27s) 2024-04-27T02:48:02.801 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:48:02.801 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-27T02:48:02.801 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-27T02:48:02.801 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "active_name": "smithi037.opdlyg", 2024-04-27T02:48:02.802 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-27T02:48:02.802 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:48:02.802 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for the mgr to restart... 2024-04-27T02:48:02.802 INFO:teuthology.orchestra.run.smithi037.stdout:Waiting for mgr epoch 9... 2024-04-27T02:48:03.242 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:02 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/4155333840' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: Active manager daemon smithi037.opdlyg restarted 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: Activating manager daemon smithi037.opdlyg 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: osdmap e3: 0 total, 0 up, 0 in 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: mgrmap e10: smithi037.opdlyg(active, starting, since 0.00383857s) 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi037.opdlyg", "id": "smithi037.opdlyg"}]: dispatch 2024-04-27T02:48:08.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-27T02:48:08.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-27T02:48:08.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-27T02:48:08.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: Manager daemon smithi037.opdlyg is now available 2024-04-27T02:48:08.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:08 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:48:09.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:09 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/mirror_snapshot_schedule"}]: dispatch 2024-04-27T02:48:09.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:09 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/trash_purge_schedule"}]: dispatch 2024-04-27T02:48:09.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:09 smithi037 ceph-mon[22326]: mgrmap e11: smithi037.opdlyg(active, since 1.00581s) 2024-04-27T02:48:09.649 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout { 2024-04-27T02:48:09.650 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-27T02:48:09.650 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-27T02:48:09.650 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout } 2024-04-27T02:48:09.650 INFO:teuthology.orchestra.run.smithi037.stdout:mgr epoch 9 is available 2024-04-27T02:48:09.650 INFO:teuthology.orchestra.run.smithi037.stdout:Generating a dashboard self-signed certificate... 2024-04-27T02:48:10.426 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:10 smithi037 ceph-mon[22326]: [27/Apr/2024:02:48:09] ENGINE Bus STARTING 2024-04-27T02:48:10.426 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:10 smithi037 ceph-mon[22326]: [27/Apr/2024:02:48:09] ENGINE Serving on http://172.21.15.37:8765 2024-04-27T02:48:10.426 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:10 smithi037 ceph-mon[22326]: [27/Apr/2024:02:48:09] ENGINE Serving on https://172.21.15.37:7150 2024-04-27T02:48:10.426 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:10 smithi037 ceph-mon[22326]: [27/Apr/2024:02:48:09] ENGINE Bus STARTED 2024-04-27T02:48:10.426 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:10 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:11.365 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-27T02:48:11.365 INFO:teuthology.orchestra.run.smithi037.stdout:Creating initial admin user... 2024-04-27T02:48:11.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:11 smithi037 ceph-mon[22326]: mgrmap e12: smithi037.opdlyg(active, since 2s) 2024-04-27T02:48:11.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:11 smithi037 ceph-mon[22326]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:48:11.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:11.492 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:12.767 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:12 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:12.767 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:12 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:13.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:13 smithi037 ceph-mon[22326]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:48:13.536 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$H60jz9Y6HUROSgx4OZyaHu0KjIvErIT6dryLjPq384yzmxIdCpGpW", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1714186092, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-27T02:48:13.537 INFO:teuthology.orchestra.run.smithi037.stdout:Fetching dashboard port number... 2024-04-27T02:48:14.731 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:14 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/663657456' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-27T02:48:14.733 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stdout 8443 2024-04-27T02:48:14.744 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-27T02:48:14.744 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout disabled 2024-04-27T02:48:14.751 INFO:teuthology.orchestra.run.smithi037.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-27T02:48:14.751 INFO:teuthology.orchestra.run.smithi037.stdout:systemctl: stdout inactive 2024-04-27T02:48:14.751 INFO:teuthology.orchestra.run.smithi037.stdout:firewalld.service is not enabled 2024-04-27T02:48:14.751 INFO:teuthology.orchestra.run.smithi037.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout:Ceph Dashboard is now available at: 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout: URL: https://smithi037:8443/ 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout: User: admin 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout: Password: uqif26tzdy 2024-04-27T02:48:14.753 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:14.754 INFO:teuthology.orchestra.run.smithi037.stdout:Saving cluster configuration to /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config directory 2024-04-27T02:48:14.754 INFO:teuthology.orchestra.run.smithi037.stdout:Enabling autotune for osd_memory_target 2024-04-27T02:48:15.685 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:15 smithi037 ceph-mon[22326]: mgrmap e13: smithi037.opdlyg(active, since 6s) 2024-04-27T02:48:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-27T02:48:17.373 INFO:teuthology.orchestra.run.smithi037.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:Or, if you are only running a single cluster on this host: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: ceph telemetry on 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout:For more information see: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.374 INFO:teuthology.orchestra.run.smithi037.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-27T02:48:17.375 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:17.375 INFO:teuthology.orchestra.run.smithi037.stdout:Bootstrap complete. 2024-04-27T02:48:17.420 INFO:tasks.cephadm:Fetching config... 2024-04-27T02:48:17.420 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:48:17.420 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-27T02:48:17.437 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-27T02:48:17.437 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:48:17.437 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-27T02:48:17.494 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-27T02:48:17.494 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:48:17.494 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/keyring of=/dev/stdout 2024-04-27T02:48:17.559 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-27T02:48:17.560 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:48:17.560 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-27T02:48:17.615 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-27T02:48:17.615 DEBUG:teuthology.orchestra.run.smithi037:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf557pAyn6Q/doNPHtgrCFkCh6Ww7OG4log+toUNQE63fcEm3rCprORXks4gGWm/dw2j/xWjd2aLvsrc/vSayVD5BB5DWbPp01OdCHk9CwfN+3cY0OkieJs0OxcXhCM1tSoBskInf36t+aSc3VUGeD6gTH620LbGr3ujeF+dY3S132y11jU7za+GqyCG85j6fyN77F0Zn1OjVuGJyHFxDxa/8PHs0Y1gRQoDK64MMqiwROCohlmV/zvmcJ04pymewafCxVLykWwwDOOC3eDKe9qF3ha9V4JOyB2sw2LK0rlME1IE64F+3aaVF1DJcnnitBUHs1YRRP40M9kZYLEoDkHDgw6q6bzHGYQ1umiiiQdjJ5ONtwVgdGQvpGNm3VBek2s2LEJFxOhKRedi6l1b8IwE5e842vZv6D9egwOIDX32IwhWNeUe1d8bMWVOrdOSUAtHIKo6KibY0A3D59uFR0p2IxhrKMgd3dbzVwC3q/0t3349O4yGC//Fuiq2DYZ7E= ceph-379591b2-0440-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-27T02:48:17.689 INFO:teuthology.orchestra.run.smithi037.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf557pAyn6Q/doNPHtgrCFkCh6Ww7OG4log+toUNQE63fcEm3rCprORXks4gGWm/dw2j/xWjd2aLvsrc/vSayVD5BB5DWbPp01OdCHk9CwfN+3cY0OkieJs0OxcXhCM1tSoBskInf36t+aSc3VUGeD6gTH620LbGr3ujeF+dY3S132y11jU7za+GqyCG85j6fyN77F0Zn1OjVuGJyHFxDxa/8PHs0Y1gRQoDK64MMqiwROCohlmV/zvmcJ04pymewafCxVLykWwwDOOC3eDKe9qF3ha9V4JOyB2sw2LK0rlME1IE64F+3aaVF1DJcnnitBUHs1YRRP40M9kZYLEoDkHDgw6q6bzHGYQ1umiiiQdjJ5ONtwVgdGQvpGNm3VBek2s2LEJFxOhKRedi6l1b8IwE5e842vZv6D9egwOIDX32IwhWNeUe1d8bMWVOrdOSUAtHIKo6KibY0A3D59uFR0p2IxhrKMgd3dbzVwC3q/0t3349O4yGC//Fuiq2DYZ7E= ceph-379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:48:17.700 DEBUG:teuthology.orchestra.run.smithi123:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf557pAyn6Q/doNPHtgrCFkCh6Ww7OG4log+toUNQE63fcEm3rCprORXks4gGWm/dw2j/xWjd2aLvsrc/vSayVD5BB5DWbPp01OdCHk9CwfN+3cY0OkieJs0OxcXhCM1tSoBskInf36t+aSc3VUGeD6gTH620LbGr3ujeF+dY3S132y11jU7za+GqyCG85j6fyN77F0Zn1OjVuGJyHFxDxa/8PHs0Y1gRQoDK64MMqiwROCohlmV/zvmcJ04pymewafCxVLykWwwDOOC3eDKe9qF3ha9V4JOyB2sw2LK0rlME1IE64F+3aaVF1DJcnnitBUHs1YRRP40M9kZYLEoDkHDgw6q6bzHGYQ1umiiiQdjJ5ONtwVgdGQvpGNm3VBek2s2LEJFxOhKRedi6l1b8IwE5e842vZv6D9egwOIDX32IwhWNeUe1d8bMWVOrdOSUAtHIKo6KibY0A3D59uFR0p2IxhrKMgd3dbzVwC3q/0t3349O4yGC//Fuiq2DYZ7E= ceph-379591b2-0440-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-27T02:48:17.739 INFO:teuthology.orchestra.run.smithi123.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf557pAyn6Q/doNPHtgrCFkCh6Ww7OG4log+toUNQE63fcEm3rCprORXks4gGWm/dw2j/xWjd2aLvsrc/vSayVD5BB5DWbPp01OdCHk9CwfN+3cY0OkieJs0OxcXhCM1tSoBskInf36t+aSc3VUGeD6gTH620LbGr3ujeF+dY3S132y11jU7za+GqyCG85j6fyN77F0Zn1OjVuGJyHFxDxa/8PHs0Y1gRQoDK64MMqiwROCohlmV/zvmcJ04pymewafCxVLykWwwDOOC3eDKe9qF3ha9V4JOyB2sw2LK0rlME1IE64F+3aaVF1DJcnnitBUHs1YRRP40M9kZYLEoDkHDgw6q6bzHGYQ1umiiiQdjJ5ONtwVgdGQvpGNm3VBek2s2LEJFxOhKRedi6l1b8IwE5e842vZv6D9egwOIDX32IwhWNeUe1d8bMWVOrdOSUAtHIKo6KibY0A3D59uFR0p2IxhrKMgd3dbzVwC3q/0t3349O4yGC//Fuiq2DYZ7E= ceph-379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:48:17.752 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-27T02:48:17.982 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:17 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3301315851' entity='client.admin' 2024-04-27T02:48:18.046 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:48:20.939 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-27T02:48:20.939 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2306119694' entity='client.admin' 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd/host:smithi037", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-27T02:48:21.165 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:20 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:48:21.432 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:48:22.233 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:21 smithi037 ceph-mon[22326]: Deploying daemon ceph-exporter.smithi037 on smithi037 2024-04-27T02:48:24.113 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi123 2024-04-27T02:48:24.114 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:48:24.114 DEBUG:teuthology.orchestra.run.smithi123:> dd of=/etc/ceph/ceph.conf 2024-04-27T02:48:24.133 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:48:24.133 DEBUG:teuthology.orchestra.run.smithi123:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-27T02:48:24.191 INFO:tasks.cephadm:Adding host smithi123 to orchestrator... 2024-04-27T02:48:24.191 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch host add smithi123 2024-04-27T02:48:24.767 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:24 smithi037 ceph-mon[22326]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:48:24.767 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:24 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:24.886 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:48:28.871 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi123", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:48:28.871 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:28.871 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:28.871 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: Deploying daemon crash.smithi037 on smithi037 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: Deploying cephadm binary to smithi123 2024-04-27T02:48:28.872 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:28 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:29.767 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:29 smithi037 ceph-mon[22326]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:31.502 INFO:teuthology.orchestra.run.smithi037.stdout:Added host 'smithi123' with addr '172.21.15.123' 2024-04-27T02:48:31.752 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: Deploying daemon node-exporter.smithi037 on smithi037 2024-04-27T02:48:31.753 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:31 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:32.144 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch host ls --format=json 2024-04-27T02:48:32.408 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:48:32.673 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:32 smithi037 ceph-mon[22326]: Added host smithi123 2024-04-27T02:48:33.875 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:33 smithi037 ceph-mon[22326]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:33.875 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:33 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:34.637 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:48:34.637 INFO:teuthology.orchestra.run.smithi037.stdout:[{"addr": "172.21.15.37", "hostname": "smithi037", "labels": [], "status": ""}, {"addr": "172.21.15.123", "hostname": "smithi123", "labels": [], "status": ""}] 2024-04-27T02:48:35.714 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:35 smithi037 ceph-mon[22326]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:35.714 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:35 smithi037 ceph-mon[22326]: from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:48:35.826 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-27T02:48:35.827 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd crush tunables default 2024-04-27T02:48:36.267 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:48:37.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:37.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:37.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:37.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:37.391 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:37.392 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:37 smithi037 ceph-mon[22326]: Deploying daemon alertmanager.smithi037 on smithi037 2024-04-27T02:48:39.217 INFO:teuthology.orchestra.run.smithi037.stderr:adjusted tunables profile to default 2024-04-27T02:48:39.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:39 smithi037 ceph-mon[22326]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:39.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:39 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:39.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:39 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2021490991' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-27T02:48:40.053 INFO:tasks.cephadm:Adding mon.smithi037 on smithi037 2024-04-27T02:48:40.053 INFO:tasks.cephadm:Adding mon.smithi123 on smithi123 2024-04-27T02:48:40.053 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch apply mon '2;smithi037:172.21.15.37=smithi037;smithi123:172.21.15.123=smithi123' 2024-04-27T02:48:40.308 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:40.355 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:40.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2021490991' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-27T02:48:40.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:40 smithi037 ceph-mon[22326]: osdmap e4: 0 total, 0 up, 0 in 2024-04-27T02:48:41.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:41 smithi037 ceph-mon[22326]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:42.067 INFO:teuthology.orchestra.run.smithi123.stdout:Scheduled mon update... 2024-04-27T02:48:42.540 DEBUG:teuthology.orchestra.run.smithi123:mon.smithi123> sudo journalctl -f -n 0 -u ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi123.service 2024-04-27T02:48:42.542 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:48:42.543 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:48:42.806 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:42.853 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:43.352 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:43 smithi037 ceph-mon[22326]: from='client.14197 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi037:172.21.15.37=smithi037;smithi123:172.21.15.123=smithi123", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:48:43.353 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:43 smithi037 ceph-mon[22326]: Saving service mon spec with placement smithi037:172.21.15.37=smithi037;smithi123:172.21.15.123=smithi123;count:2 2024-04-27T02:48:43.353 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:43 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:43.353 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:43 smithi037 ceph-mon[22326]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:44.605 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:48:44.605 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:48:44.607 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:48:45.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:45 smithi037 ceph-mon[22326]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:45.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:45 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1048444163' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:48:46.110 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:48:46.110 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:48:46.342 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:46.388 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: Regenerating cephadm self-signed grafana TLS certificates 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:47.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:46 smithi037 ceph-mon[22326]: Deploying daemon grafana.smithi037 on smithi037 2024-04-27T02:48:48.017 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:47 smithi037 ceph-mon[22326]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:48.045 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:48:48.045 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:48:48.047 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:48:49.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:48 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/157636262' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:48:49.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:48 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:49.705 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:48:49.705 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:48:49.930 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:49.977 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:50.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:49 smithi037 ceph-mon[22326]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:51.797 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:48:51.798 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:48:51.800 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:48:52.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:51 smithi037 ceph-mon[22326]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:52.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:51 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1025806349' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:48:53.299 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:48:53.299 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:48:53.534 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:53.589 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:54.018 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:53 smithi037 ceph-mon[22326]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:55.375 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:48:55.376 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:48:55.378 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:48:56.239 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:55 smithi037 ceph-mon[22326]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:56.239 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:55 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1550045650' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:48:56.975 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:48:56.976 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:48:57.209 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:57.255 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.768 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:57.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:57 smithi037 ceph-mon[22326]: Deploying daemon prometheus.smithi037 on smithi037 2024-04-27T02:48:59.021 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:48:59.022 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:48:59.023 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:48:59.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:59 smithi037 ceph-mon[22326]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:48:59.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:59 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:48:59.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:48:59 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/2299681028' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:00.561 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:00.562 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:00.797 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:00.842 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:01.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:01 smithi037 ceph-mon[22326]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:02.511 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:02.511 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:02.513 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:03.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:03 smithi037 ceph-mon[22326]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:03.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:03 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/3931206349' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:04.074 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:04.074 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:04.310 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:04.356 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:05.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:05 smithi037 ceph-mon[22326]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:06.028 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:06.028 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:06.030 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:06.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:06 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1662938606' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:07.473 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:07 smithi037 ceph-mon[22326]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:07.604 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:07.604 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:07.837 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:07.883 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:09.507 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:09 smithi037 ceph-mon[22326]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:09.657 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:09.658 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:09.659 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:10.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:10 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/269461531' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:11.249 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:11.249 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:11.491 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:11.538 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:12.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:11 smithi037 ceph-mon[22326]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:12.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:12.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:12.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:12.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:11 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-27T02:49:13.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:12 smithi037 ceph-mon[22326]: from='mgr.14164 172.21.15.37:0/759362014' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-27T02:49:13.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:12 smithi037 ceph-mon[22326]: mgrmap e14: smithi037.opdlyg(active, since 63s) 2024-04-27T02:49:13.369 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:13.370 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:13.372 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:14.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:13 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/375582345' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:14.985 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:14.985 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:15.223 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:15.269 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:16.960 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:16.960 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:16.962 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:17.268 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:17 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/778553717' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:18.453 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:18.453 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:18.702 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:18.749 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: Active manager daemon smithi037.opdlyg restarted 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: Activating manager daemon smithi037.opdlyg 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: osdmap e5: 0 total, 0 up, 0 in 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: mgrmap e15: smithi037.opdlyg(active, starting, since 0.00321671s) 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi037.opdlyg", "id": "smithi037.opdlyg"}]: dispatch 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: Manager daemon smithi037.opdlyg is now available 2024-04-27T02:49:19.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/mirror_snapshot_schedule"}]: dispatch 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi037.opdlyg/trash_purge_schedule"}]: dispatch 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: [27/Apr/2024:02:49:19] ENGINE Bus STARTING 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: [27/Apr/2024:02:49:19] ENGINE Serving on http://172.21.15.37:8765 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: [27/Apr/2024:02:49:19] ENGINE Serving on https://172.21.15.37:7150 2024-04-27T02:49:20.474 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: [27/Apr/2024:02:49:19] ENGINE Bus STARTED 2024-04-27T02:49:20.475 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: mgrmap e16: smithi037.opdlyg(active, since 1.00529s) 2024-04-27T02:49:20.475 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:20.599 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:20.599 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:20.601 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:21.518 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:21 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/4202133389' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:22.189 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:22.190 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:22.423 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:22.469 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:22.495 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:22 smithi037 ceph-mon[22326]: mgrmap e17: smithi037.opdlyg(active, since 2s) 2024-04-27T02:49:22.495 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:23.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:24.068 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:24.068 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:24.071 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:24.994 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:24.994 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:24.994 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:24 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1482405305' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:26.190 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:26.190 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:26.190 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd/host:smithi037", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:49:26.813 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:26.813 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:27.043 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:27.091 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd/host:smithi123", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: Updating smithi037:/etc/ceph/ceph.conf 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: Updating smithi123:/etc/ceph/ceph.conf 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: Updating smithi123:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: Updating smithi037:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:27.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi123", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi123", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-27T02:49:27.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:28.786 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:28.786 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:28.788 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:29.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:28 smithi037 ceph-mon[22326]: Updating smithi123:/etc/ceph/ceph.client.admin.keyring 2024-04-27T02:49:29.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:28 smithi037 ceph-mon[22326]: Updating smithi037:/etc/ceph/ceph.client.admin.keyring 2024-04-27T02:49:29.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:28 smithi037 ceph-mon[22326]: Updating smithi123:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-27T02:49:29.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:28 smithi037 ceph-mon[22326]: Updating smithi037:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-27T02:49:29.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:28 smithi037 ceph-mon[22326]: Deploying daemon ceph-exporter.smithi123 on smithi123 2024-04-27T02:49:30.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:29 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/797524577' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:31.119 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:31.119 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:31.356 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:32.508 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:32 smithi037 ceph-mon[22326]: Deploying daemon crash.smithi123 on smithi123 2024-04-27T02:49:32.937 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:32.937 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:32.939 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:33.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:33 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1297226167' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:35.252 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:35.252 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:35.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:35 smithi037 ceph-mon[22326]: Deploying daemon node-exporter.smithi123 on smithi123 2024-04-27T02:49:35.498 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:37.442 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:37.442 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:37.444 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:37.769 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:37 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1966901897' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:39.303 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:39.304 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:40.112 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:40.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:40.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:40.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:40.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.vxrhov", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.vxrhov", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-27T02:49:40.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:41.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:41 smithi037 ceph-mon[22326]: Deploying daemon mgr.smithi123.vxrhov on smithi123 2024-04-27T02:49:42.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:42 smithi037 ceph-mon[22326]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:42.921 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:42.922 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":1,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:47:02.434928Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-27T02:49:42.924 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 1 2024-04-27T02:49:43.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:43 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/2257954412' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:44.505 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-27T02:49:44.505 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:44.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:44.757 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:45.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:45 smithi037 ceph-mon[22326]: Deploying daemon mon.smithi123 on smithi123 2024-04-27T02:49:46.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:46 smithi037 ceph-mon[22326]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:48.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:48 smithi037 ceph-mon[22326]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:48.705 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:48 smithi123 ceph-mon[31187]: mon.smithi123@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-04-27T02:49:49.098 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:48 smithi123 bash[31132]: c8307bb66d1fe2983a7683d16c6837bd69cb61e59d4610e8909eb6537f73773f 2024-04-27T02:49:49.098 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:48 smithi123 systemd[1]: Started Ceph mon.smithi123 for 379591b2-0440-11ef-bc93-c7b262605968. 2024-04-27T02:49:53.709 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-27T02:49:53.709 INFO:teuthology.orchestra.run.smithi123.stdout:{"epoch":2,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","modified":"2024-04-27T02:49:48.697921Z","created":"2024-04-27T02:47:02.434928Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi037","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:3300","nonce":0},{"type":"v1","addr":"172.21.15.37:6789","nonce":0}]},"addr":"172.21.15.37:6789/0","public_addr":"172.21.15.37:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi123","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:3300","nonce":0},{"type":"v1","addr":"172.21.15.123:6789","nonce":0}]},"addr":"172.21.15.123:6789/0","public_addr":"172.21.15.123:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-27T02:49:53.712 INFO:teuthology.orchestra.run.smithi123.stderr:dumped monmap epoch 2 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: mon.smithi037 calling monitor election 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/3227567168' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: mon.smithi123 calling monitor election 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.vxrhov/crt"}]: dispatch 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: mon.smithi037 is new leader, mons smithi037,smithi123 in quorum (ranks 0,1) 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: monmap epoch 2 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: last_changed 2024-04-27T02:49:48.697921+0000 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: created 2024-04-27T02:47:02.434928+0000 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: min_mon_release 19 (squid) 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: election_strategy: 1 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: 1: [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] mon.smithi123 2024-04-27T02:49:54.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: fsmap 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: osdmap e5: 0 total, 0 up, 0 in 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: mgrmap e17: smithi037.opdlyg(active, since 34s) 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: overall HEALTH_OK 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: Standby manager daemon smithi123.vxrhov started 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.vxrhov/key"}]: dispatch 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.092 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: mon.smithi037 calling monitor election 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/3227567168' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: mon.smithi123 calling monitor election 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.vxrhov/crt"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:54.093 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: mon.smithi037 is new leader, mons smithi037,smithi123 in quorum (ranks 0,1) 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: monmap epoch 2 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: last_changed 2024-04-27T02:49:48.697921+0000 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: created 2024-04-27T02:47:02.434928+0000 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: min_mon_release 19 (squid) 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: election_strategy: 1 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: 0: [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] mon.smithi037 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: 1: [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] mon.smithi123 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: fsmap 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: osdmap e5: 0 total, 0 up, 0 in 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: mgrmap e17: smithi037.opdlyg(active, since 34s) 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: overall HEALTH_OK 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: Standby manager daemon smithi123.vxrhov started 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi123.vxrhov/key"}]: dispatch 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.? 172.21.15.123:0/2579976239' entity='mgr.smithi123.vxrhov' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.095 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:54.444 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-27T02:49:54.444 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph config generate-minimal-conf 2024-04-27T02:49:54.705 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:49:55.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:55.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: mgrmap e18: smithi037.opdlyg(active, since 34s), standbys: smithi123.vxrhov 2024-04-27T02:49:55.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi123.vxrhov", "id": "smithi123.vxrhov"}]: dispatch 2024-04-27T02:49:55.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:49:55.028 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:55.029 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:55.092 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:55.093 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: mgrmap e18: smithi037.opdlyg(active, since 34s), standbys: smithi123.vxrhov 2024-04-27T02:49:55.093 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr metadata", "who": "smithi123.vxrhov", "id": "smithi123.vxrhov"}]: dispatch 2024-04-27T02:49:55.093 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:49:55.093 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:55.093 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:49:56.592 INFO:teuthology.orchestra.run.smithi037.stdout:# minimal ceph.conf for 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:49:56.592 INFO:teuthology.orchestra.run.smithi037.stdout:[global] 2024-04-27T02:49:56.592 INFO:teuthology.orchestra.run.smithi037.stdout: fsid = 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:49:56.592 INFO:teuthology.orchestra.run.smithi037.stdout: mon_host = [v2:172.21.15.37:3300/0,v1:172.21.15.37:6789/0] [v2:172.21.15.123:3300/0,v1:172.21.15.123:6789/0] 2024-04-27T02:49:57.195 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:57.195 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: Updating smithi037:/etc/ceph/ceph.conf 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: Updating smithi123:/etc/ceph/ceph.conf 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/683648611' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-27T02:49:57.196 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:57 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.227 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-27T02:49:57.228 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:49:57.228 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.conf 2024-04-27T02:49:57.257 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:49:57.257 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-27T02:49:57.322 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:49:57.322 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.conf 2024-04-27T02:49:57.344 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: Updating smithi037:/etc/ceph/ceph.conf 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: Updating smithi123:/etc/ceph/ceph.conf 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/683648611' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-27T02:49:57.345 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-27T02:49:57.346 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:57 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:57.349 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:49:57.349 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-27T02:49:57.414 INFO:tasks.cephadm:Deploying OSDs... 2024-04-27T02:49:57.414 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:49:57.414 DEBUG:teuthology.orchestra.run.smithi037:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:49:57.430 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-27T02:49:57.430 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme1n1 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme1n1 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 761 Links: 1 Device type: 103,2 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:48:21.799495656 +0000 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:30.740025177 +0000 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:30.740025177 +0000 2024-04-27T02:49:57.486 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:30.732025286 +0000 2024-04-27T02:49:57.487 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-27T02:49:57.550 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:49:57.550 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:49:57.550 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000273953 s, 1.9 MB/s 2024-04-27T02:49:57.551 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-27T02:49:57.608 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme2n1 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme2n1 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 774 Links: 1 Device type: 103,4 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:48:21.810495510 +0000 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:30.874023351 +0000 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:30.874023351 +0000 2024-04-27T02:49:57.665 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:30.866023460 +0000 2024-04-27T02:49:57.666 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-27T02:49:57.728 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:49:57.728 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:49:57.729 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000206297 s, 2.5 MB/s 2024-04-27T02:49:57.730 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-27T02:49:57.786 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme3n1 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme3n1 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 786 Links: 1 Device type: 103,6 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:48:21.821495365 +0000 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:31.001021620 +0000 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:31.001021620 +0000 2024-04-27T02:49:57.842 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:30.989021783 +0000 2024-04-27T02:49:57.843 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-27T02:49:57.905 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:49:57.905 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:49:57.905 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000214202 s, 2.4 MB/s 2024-04-27T02:49:57.906 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-27T02:49:57.962 DEBUG:teuthology.orchestra.run.smithi037:> stat /dev/nvme4n1 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout: File: /dev/nvme4n1 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Device: 5h/5d Inode: 798 Links: 1 Device type: 103,8 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Access: 2024-04-27 02:48:21.833495206 +0000 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Modify: 2024-04-27 02:45:31.125019930 +0000 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout:Change: 2024-04-27 02:45:31.125019930 +0000 2024-04-27T02:49:58.018 INFO:teuthology.orchestra.run.smithi037.stdout: Birth: 2024-04-27 02:45:31.114020080 +0000 2024-04-27T02:49:58.019 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-27T02:49:58.082 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records in 2024-04-27T02:49:58.082 INFO:teuthology.orchestra.run.smithi037.stderr:1+0 records out 2024-04-27T02:49:58.082 INFO:teuthology.orchestra.run.smithi037.stderr:512 bytes copied, 0.000204169 s, 2.5 MB/s 2024-04-27T02:49:58.084 DEBUG:teuthology.orchestra.run.smithi037:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-27T02:49:58.140 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:49:58.140 DEBUG:teuthology.orchestra.run.smithi123:> dd if=/scratch_devs of=/dev/stdout 2024-04-27T02:49:58.158 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-27T02:49:58.159 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme1n1 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme1n1 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 761 Links: 1 Device type: 103,2 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:49:25.813395006 +0000 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:32.244725216 +0000 2024-04-27T02:49:58.216 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:32.244725216 +0000 2024-04-27T02:49:58.217 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:32.232725508 +0000 2024-04-27T02:49:58.217 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-27T02:49:58.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:58 smithi037 ceph-mon[22326]: Updating smithi123:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:58.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:58 smithi037 ceph-mon[22326]: Updating smithi037:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:58.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:58 smithi037 ceph-mon[22326]: Reconfiguring mon.smithi037 (unknown last config time)... 2024-04-27T02:49:58.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:58 smithi037 ceph-mon[22326]: Reconfiguring daemon mon.smithi037 on smithi037 2024-04-27T02:49:58.280 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:58 smithi123 ceph-mon[31187]: Updating smithi123:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:58.280 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:58 smithi123 ceph-mon[31187]: Updating smithi037:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-27T02:49:58.280 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:58 smithi123 ceph-mon[31187]: Reconfiguring mon.smithi037 (unknown last config time)... 2024-04-27T02:49:58.280 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:58 smithi123 ceph-mon[31187]: Reconfiguring daemon mon.smithi037 on smithi037 2024-04-27T02:49:58.283 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:49:58.283 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:49:58.283 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000279886 s, 1.8 MB/s 2024-04-27T02:49:58.284 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-27T02:49:58.343 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme2n1 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme2n1 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 774 Links: 1 Device type: 103,4 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:49:25.825394720 +0000 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:32.364722301 +0000 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:32.364722301 +0000 2024-04-27T02:49:58.402 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:32.353722568 +0000 2024-04-27T02:49:58.403 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-27T02:49:58.469 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:49:58.469 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:49:58.469 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000284768 s, 1.8 MB/s 2024-04-27T02:49:58.470 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-27T02:49:58.529 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme3n1 2024-04-27T02:49:58.587 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme3n1 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 786 Links: 1 Device type: 103,6 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:49:25.835394481 +0000 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:32.484719386 +0000 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:32.484719386 +0000 2024-04-27T02:49:58.588 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:32.473719653 +0000 2024-04-27T02:49:58.588 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-27T02:49:58.654 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:49:58.654 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:49:58.654 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000258036 s, 2.0 MB/s 2024-04-27T02:49:58.655 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-27T02:49:58.715 DEBUG:teuthology.orchestra.run.smithi123:> stat /dev/nvme4n1 2024-04-27T02:49:58.773 INFO:teuthology.orchestra.run.smithi123.stdout: File: /dev/nvme4n1 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Device: 5h/5d Inode: 798 Links: 1 Device type: 103,8 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Access: 2024-04-27 02:49:25.845394242 +0000 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Modify: 2024-04-27 02:45:32.606716422 +0000 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout:Change: 2024-04-27 02:45:32.606716422 +0000 2024-04-27T02:49:58.774 INFO:teuthology.orchestra.run.smithi123.stdout: Birth: 2024-04-27 02:45:32.598716616 +0000 2024-04-27T02:49:58.774 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-27T02:49:58.841 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records in 2024-04-27T02:49:58.841 INFO:teuthology.orchestra.run.smithi123.stderr:1+0 records out 2024-04-27T02:49:58.841 INFO:teuthology.orchestra.run.smithi123.stderr:512 bytes copied, 0.000261461 s, 2.0 MB/s 2024-04-27T02:49:58.842 DEBUG:teuthology.orchestra.run.smithi123:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-27T02:49:58.902 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-04-27T02:49:59.200 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi123/config 2024-04-27T02:49:59.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:59.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:59.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:59.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi037.opdlyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-27T02:49:59.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-27T02:49:59.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:49:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi037.opdlyg", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-27T02:49:59.323 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:49:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:00.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:00 smithi037 ceph-mon[22326]: Reconfiguring mgr.smithi037.opdlyg (unknown last config time)... 2024-04-27T02:50:00.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:00 smithi037 ceph-mon[22326]: Reconfiguring daemon mgr.smithi037.opdlyg on smithi037 2024-04-27T02:50:00.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:00 smithi037 ceph-mon[22326]: overall HEALTH_OK 2024-04-27T02:50:00.275 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:00 smithi123 ceph-mon[31187]: Reconfiguring mgr.smithi037.opdlyg (unknown last config time)... 2024-04-27T02:50:00.275 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:00 smithi123 ceph-mon[31187]: Reconfiguring daemon mgr.smithi037.opdlyg on smithi037 2024-04-27T02:50:00.275 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:00 smithi123 ceph-mon[31187]: overall HEALTH_OK 2024-04-27T02:50:01.014 INFO:teuthology.orchestra.run.smithi123.stdout:Scheduled osd.all-available-devices update... 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:01.117 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:01 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi037", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:01.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:01 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:01.628 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-04-27T02:50:01.628 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:01.896 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: Reconfiguring ceph-exporter.smithi037 (monmap changed)... 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: Reconfiguring daemon ceph-exporter.smithi037 on smithi037 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: Marking host: smithi037 for OSDSpec preview refresh. 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: Marking host: smithi123 for OSDSpec preview refresh. 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: Saving service osd.all-available-devices spec with placement * 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:50:02.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:02 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:02.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: Reconfiguring ceph-exporter.smithi037 (monmap changed)... 2024-04-27T02:50:02.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: Reconfiguring daemon ceph-exporter.smithi037 on smithi037 2024-04-27T02:50:02.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: Marking host: smithi037 for OSDSpec preview refresh. 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: Marking host: smithi123 for OSDSpec preview refresh. 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: Saving service osd.all-available-devices spec with placement * 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi037", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:50:02.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:02 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:03.114 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:03 smithi037 ceph-mon[22326]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:03.115 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:03 smithi037 ceph-mon[22326]: Reconfiguring crash.smithi037 (monmap changed)... 2024-04-27T02:50:03.115 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:03 smithi037 ceph-mon[22326]: Reconfiguring daemon crash.smithi037 on smithi037 2024-04-27T02:50:03.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:03 smithi123 ceph-mon[31187]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:03.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:03 smithi123 ceph-mon[31187]: Reconfiguring crash.smithi037 (monmap changed)... 2024-04-27T02:50:03.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:03 smithi123 ceph-mon[31187]: Reconfiguring daemon crash.smithi037 on smithi037 2024-04-27T02:50:04.600 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:05.142 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: Reconfiguring alertmanager.smithi037 (dependencies changed)... 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: Reconfiguring daemon alertmanager.smithi037 on smithi037 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:05.143 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:04 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1854139135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:05.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: Reconfiguring alertmanager.smithi037 (dependencies changed)... 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: Reconfiguring daemon alertmanager.smithi037 on smithi037 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:05.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:04 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1854139135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:05.757 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:06.758 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:07.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:06 smithi037 ceph-mon[22326]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:07.125 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:07.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:06 smithi123 ceph-mon[31187]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:09.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:08 smithi037 ceph-mon[22326]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:09.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:08 smithi123 ceph-mon[31187]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:10.348 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:10.926 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:10 smithi037 ceph-mon[22326]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:10.926 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:10 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/4188269476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:10.953 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:11.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:10 smithi123 ceph-mon[31187]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:11.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:10 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/4188269476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:11.954 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:12.209 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:12.968 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:12 smithi037 ceph-mon[22326]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:12.968 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:12.968 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:12.968 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:12 smithi037 ceph-mon[22326]: Reconfiguring grafana.smithi037 (dependencies changed)... 2024-04-27T02:50:12.968 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:12 smithi037 ceph-mon[22326]: Reconfiguring daemon grafana.smithi037 on smithi037 2024-04-27T02:50:13.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:12 smithi123 ceph-mon[31187]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:13.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:13.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:13.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:12 smithi123 ceph-mon[31187]: Reconfiguring grafana.smithi037 (dependencies changed)... 2024-04-27T02:50:13.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:12 smithi123 ceph-mon[31187]: Reconfiguring daemon grafana.smithi037 on smithi037 2024-04-27T02:50:14.804 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:14 smithi037 ceph-mon[22326]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:15.098 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:14 smithi123 ceph-mon[31187]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:15.893 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:16.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:16 smithi037 ceph-mon[22326]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:16.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:16 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/935084739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:16.816 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:17.098 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:16 smithi123 ceph-mon[31187]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:17.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:16 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/935084739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:17.817 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:18.105 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:19.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:18 smithi037 ceph-mon[22326]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:19.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:19.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:19.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:18 smithi037 ceph-mon[22326]: Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-27T02:50:19.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:18 smithi123 ceph-mon[31187]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:19.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:19.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:19.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:18 smithi123 ceph-mon[31187]: Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-27T02:50:20.106 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:19 smithi037 ceph-mon[22326]: Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-27T02:50:20.106 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:20.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:19 smithi123 ceph-mon[31187]: Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-27T02:50:20.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:21.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:20 smithi037 ceph-mon[22326]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:21.348 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:20 smithi123 ceph-mon[31187]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:22.352 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:23.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:22 smithi037 ceph-mon[22326]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:23.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:22 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1523829500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:23.298 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:23.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:22 smithi123 ceph-mon[31187]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:23.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:22 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1523829500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:24.299 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:24.546 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:24.999 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:24 smithi037 ceph-mon[22326]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi123", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:50:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:25.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:24 smithi123 ceph-mon[31187]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:25.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:25.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:25.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi123", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-27T02:50:25.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: Reconfiguring ceph-exporter.smithi123 (monmap changed)... 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: Reconfiguring daemon ceph-exporter.smithi123 on smithi123 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:50:26.156 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: Reconfiguring ceph-exporter.smithi123 (monmap changed)... 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: Reconfiguring daemon ceph-exporter.smithi123 on smithi123 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi123", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-27T02:50:26.255 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:26.371 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:26.921 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:27.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:26 smithi123 ceph-mon[31187]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:27.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:26 smithi123 ceph-mon[31187]: Reconfiguring crash.smithi123 (monmap changed)... 2024-04-27T02:50:27.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:26 smithi123 ceph-mon[31187]: Reconfiguring daemon crash.smithi123 on smithi123 2024-04-27T02:50:27.198 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:26 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/185637247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:27.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:26 smithi037 ceph-mon[22326]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:27.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:26 smithi037 ceph-mon[22326]: Reconfiguring crash.smithi123 (monmap changed)... 2024-04-27T02:50:27.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:26 smithi037 ceph-mon[22326]: Reconfiguring daemon crash.smithi123 on smithi123 2024-04-27T02:50:27.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:26 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/185637247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:27.922 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:28.170 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:28.297 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:28.297 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:28.297 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:28.297 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: Reconfiguring mgr.smithi123.vxrhov (monmap changed)... 2024-04-27T02:50:28.297 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.vxrhov", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-27T02:50:28.298 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-27T02:50:28.298 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:28.298 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:28 smithi123 ceph-mon[31187]: Reconfiguring daemon mgr.smithi123.vxrhov on smithi123 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: Reconfiguring mgr.smithi123.vxrhov (monmap changed)... 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi123.vxrhov", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-27T02:50:28.512 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:28.513 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:28 smithi037 ceph-mon[22326]: Reconfiguring daemon mgr.smithi123.vxrhov on smithi123 2024-04-27T02:50:29.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:29.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:29.770 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: Reconfiguring mon.smithi123 (monmap changed)... 2024-04-27T02:50:29.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-27T02:50:29.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-27T02:50:29.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:29.771 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:29 smithi037 ceph-mon[22326]: Reconfiguring daemon mon.smithi123 on smithi123 2024-04-27T02:50:29.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:29.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:29.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: Reconfiguring mon.smithi123 (monmap changed)... 2024-04-27T02:50:29.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-27T02:50:29.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-27T02:50:29.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:29.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:29 smithi123 ceph-mon[31187]: Reconfiguring daemon mon.smithi123 on smithi123 2024-04-27T02:50:29.934 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:30.634 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:31.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:31.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2223600427' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:31.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037:9093"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037:3000"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037:9095"}]: dispatch 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:50:31.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:31.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2223600427' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:31.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037:9093"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037:3000"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037:9095"}]: dispatch 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:50:31.635 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037:9093"}]: dispatch 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037:3000"}]: dispatch 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:50:31.849 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:31 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037:9095"}]: dispatch 2024-04-27T02:50:32.020 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-27T02:50:32.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi037:9093"}]: dispatch 2024-04-27T02:50:32.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-27T02:50:32.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi037:3000"}]: dispatch 2024-04-27T02:50:32.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:50:32.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:31 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi037:9095"}]: dispatch 2024-04-27T02:50:32.833 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:32.859 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:32 smithi037 ceph-mon[22326]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:32.859 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:32.859 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:33.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:32 smithi123 ceph-mon[31187]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:33.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:33.099 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:34.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:34.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:34.314 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:34 smithi037 ceph-mon[22326]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:34.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:34.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:34.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:34 smithi123 ceph-mon[31187]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:35.253 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:35.577 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:35.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:36.383 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:36 smithi037 ceph-mon[22326]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:36.383 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:36 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1051700761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:36.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:36 smithi123 ceph-mon[31187]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:36.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:36 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1051700761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:36.660 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:50:37.424 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.425 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:50:37.425 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:37 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.465 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:50:37.466 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:37 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:37.662 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:38.426 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:38 smithi123 ceph-mon[31187]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:38.465 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:38 smithi037 ceph-mon[22326]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:38.849 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/2583150032' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]: dispatch 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]: dispatch 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]': finished 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: osdmap e6: 1 total, 0 up, 1 in 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3878743331' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f4a233c3-1f84-4f84-9d20-e1d3ca92f708"}]: dispatch 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3878743331' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f4a233c3-1f84-4f84-9d20-e1d3ca92f708"}]': finished 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: osdmap e7: 2 total, 0 up, 2 in 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:40.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/2583150032' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]: dispatch 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]: dispatch 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "17670074-c455-4137-9fc3-4bbe84ac9d47"}]': finished 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: osdmap e6: 1 total, 0 up, 1 in 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:40.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3878743331' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f4a233c3-1f84-4f84-9d20-e1d3ca92f708"}]: dispatch 2024-04-27T02:50:40.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3878743331' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f4a233c3-1f84-4f84-9d20-e1d3ca92f708"}]': finished 2024-04-27T02:50:40.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: osdmap e7: 2 total, 0 up, 2 in 2024-04-27T02:50:40.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:40.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:40.758 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:41.405 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:41 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3152410101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:41.406 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:41 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1147914121' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:41.435 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1714186239,"num_remapped_pgs":0} 2024-04-27T02:50:41.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:41 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3152410101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:41.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:41 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/1147914121' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:42.436 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:42.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:42 smithi037 ceph-mon[22326]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:42.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:42 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/4190838069' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:42.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:42 smithi123 ceph-mon[31187]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:42.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:42 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/4190838069' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:42.689 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:44.459 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/4063038983' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]': finished 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: osdmap e8: 3 total, 0 up, 3 in 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1501856357' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "61ec827f-eaba-4d7d-ba34-ca8d2b593c8c"}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1501856357' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "61ec827f-eaba-4d7d-ba34-ca8d2b593c8c"}]': finished 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: osdmap e9: 4 total, 0 up, 4 in 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:44.460 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:44.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:44.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/4063038983' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]: dispatch 2024-04-27T02:50:44.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef040aa3-f2e4-487c-a038-4d6c6f4b43a9"}]': finished 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: osdmap e8: 3 total, 0 up, 3 in 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1501856357' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "61ec827f-eaba-4d7d-ba34-ca8d2b593c8c"}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1501856357' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "61ec827f-eaba-4d7d-ba34-ca8d2b593c8c"}]': finished 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: osdmap e9: 4 total, 0 up, 4 in 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:44.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:44.674 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:45.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:45 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2243669038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:45.270 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:45 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/3842624782' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:45.333 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1714186243,"num_remapped_pgs":0} 2024-04-27T02:50:45.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:45 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2243669038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:45.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:45 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/3842624782' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:46.334 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:46.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:46 smithi037 ceph-mon[22326]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:46.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:46 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/666323976' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:46.591 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:46.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:46 smithi123 ceph-mon[31187]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:46.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:46 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/666323976' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:48.395 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:48.395 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:48.395 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/2118303546' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]: dispatch 2024-04-27T02:50:48.395 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]: dispatch 2024-04-27T02:50:48.395 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]': finished 2024-04-27T02:50:48.395 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: osdmap e10: 5 total, 0 up, 5 in 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3998202816' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1d14bb6a-a35a-449b-b8a3-5f455ed27ff8"}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3998202816' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1d14bb6a-a35a-449b-b8a3-5f455ed27ff8"}]': finished 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: osdmap e11: 6 total, 0 up, 6 in 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:48.396 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:48 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/2118303546' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8e829393-b0ce-4999-aade-c324f700aea6"}]': finished 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: osdmap e10: 5 total, 0 up, 5 in 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:48.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3998202816' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1d14bb6a-a35a-449b-b8a3-5f455ed27ff8"}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3998202816' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1d14bb6a-a35a-449b-b8a3-5f455ed27ff8"}]': finished 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: osdmap e11: 6 total, 0 up, 6 in 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:48.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:48 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:49.312 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1714186248,"num_remapped_pgs":0} 2024-04-27T02:50:49.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:49 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1576156530' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:49.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:49 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/2760277463' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:49.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:49 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:49.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:49 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1576156530' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:49.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:49 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/2760277463' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:49.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:49 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:50:50.317 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:50.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:50 smithi037 ceph-mon[22326]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:50.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:50 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1239438822' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:50.591 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:50.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:50 smithi123 ceph-mon[31187]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:50.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:50 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1239438822' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1710953406' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]: dispatch 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]: dispatch 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]': finished 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: osdmap e12: 7 total, 0 up, 7 in 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:51.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:51.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:51.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:51.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:51.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:50:51.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/1710953406' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]: dispatch 2024-04-27T02:50:51.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]: dispatch 2024-04-27T02:50:51.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3b120967-a7fa-485e-ad56-3fd896859c8e"}]': finished 2024-04-27T02:50:51.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: osdmap e12: 7 total, 0 up, 7 in 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:51.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:50:52.312 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3974693339' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3403cdab-b7bf-4223-a25d-82be54827980"}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3974693339' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3403cdab-b7bf-4223-a25d-82be54827980"}]': finished 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: osdmap e13: 8 total, 0 up, 8 in 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:52.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:52.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:50:52.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:52 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:50:52.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3974693339' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3403cdab-b7bf-4223-a25d-82be54827980"}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3974693339' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3403cdab-b7bf-4223-a25d-82be54827980"}]': finished 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: osdmap e13: 8 total, 0 up, 8 in 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:50:52.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:52 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:50:53.119 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:50:53.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:53 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1776234774' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:53.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:53 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/1385203862' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:53.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:53 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1776234774' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:53.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:53 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/1385203862' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:54.120 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:54.377 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:54.499 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:54 smithi037 ceph-mon[22326]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:54.499 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:54 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3876089122' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:54.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:54 smithi123 ceph-mon[31187]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:54.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:54 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3876089122' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-27T02:50:56.280 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:50:56.433 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:56 smithi123 ceph-mon[31187]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:56.520 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:56 smithi037 ceph-mon[22326]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:57.315 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:50:57.390 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:57 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3947966088' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:57.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:57 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3947966088' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:50:58.315 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:50:58.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:58 smithi037 ceph-mon[22326]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:58.599 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:58 smithi123 ceph-mon[31187]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:50:59.011 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:50:59.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-27T02:50:59.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:59.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:50:59 smithi123 ceph-mon[31187]: Deploying daemon osd.0 on smithi123 2024-04-27T02:50:59.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-27T02:50:59.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:50:59.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:50:59 smithi037 ceph-mon[22326]: Deploying daemon osd.0 on smithi123 2024-04-27T02:51:00.470 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:00 smithi123 ceph-mon[31187]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:00.470 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:00 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-27T02:51:00.470 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:00 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:00.470 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:00 smithi123 ceph-mon[31187]: Deploying daemon osd.1 on smithi037 2024-04-27T02:51:00.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:00 smithi037 ceph-mon[22326]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:00.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:00 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-27T02:51:00.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:00 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:00.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:00 smithi037 ceph-mon[22326]: Deploying daemon osd.1 on smithi037 2024-04-27T02:51:02.476 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:02 smithi037 ceph-mon[22326]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:02.547 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:02.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:02 smithi123 ceph-mon[31187]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:03.332 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:03 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1886593433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:03.349 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:03 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1886593433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:03.359 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:04.360 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:04.679 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: Deploying daemon osd.2 on smithi123 2024-04-27T02:51:04.948 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: Deploying daemon osd.2 on smithi123 2024-04-27T02:51:05.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:06.740 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:07.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:06 smithi037 ceph-mon[22326]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:07.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:06 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1254445162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:07.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:06 smithi123 ceph-mon[31187]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:07.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:06 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1254445162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:07.425 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:08.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:07 smithi037 ceph-mon[22326]: from='osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-27T02:51:08.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:07 smithi037 ceph-mon[22326]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-27T02:51:08.264 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:07 smithi123 ceph-mon[31187]: from='osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-27T02:51:08.265 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:07 smithi123 ceph-mon[31187]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-27T02:51:08.427 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:08.704 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:09.165 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: osdmap e14: 8 total, 0 up, 8 in 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:09.166 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:09.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:09.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:09.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-27T02:51:09.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:08 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:09.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:09.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-27T02:51:09.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:09.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: osdmap e14: 8 total, 0 up, 8 in 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-27T02:51:09.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:08 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: Deploying daemon osd.3 on smithi037 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: osdmap e15: 8 total, 0 up, 8 in 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:10.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='osd.0 ' entity='osd.0' 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-27T02:51:10.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:09 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: Deploying daemon osd.3 on smithi037 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: osdmap e15: 8 total, 0 up, 8 in 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:10.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='osd.0 ' entity='osd.0' 2024-04-27T02:51:10.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:10.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:10.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-27T02:51:10.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:09 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:10.651 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:11.196 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:11.196 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:11.196 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:11.196 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: Deploying daemon osd.4 on smithi123 2024-04-27T02:51:11.196 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575] boot 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: osdmap e16: 8 total, 1 up, 8 in 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:11.197 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:10 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2776055630' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:11.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: Deploying daemon osd.4 on smithi123 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: osd.0 [v2:172.21.15.123:6800/3259082575,v1:172.21.15.123:6801/3259082575] boot 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: osdmap e16: 8 total, 1 up, 8 in 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:11.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:11.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:10 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2776055630' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:11.957 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1714186270,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:12.244 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:11 smithi037 ceph-mon[22326]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-27T02:51:12.251 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:11 smithi123 ceph-mon[31187]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-27T02:51:12.959 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: pgmap v60: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: osdmap e17: 8 total, 1 up, 8 in 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:13.221 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-27T02:51:13.222 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:12 smithi037 ceph-mon[22326]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: pgmap v60: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: osdmap e17: 8 total, 1 up, 8 in 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:13.248 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-27T02:51:13.249 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:12 smithi123 ceph-mon[31187]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-27T02:51:13.300 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:14.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:14.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-27T02:51:14.167 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: osdmap e18: 8 total, 1 up, 8 in 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394] boot 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: osdmap e19: 8 total, 2 up, 8 in 2024-04-27T02:51:14.168 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:14.169 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:13 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:14.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: osdmap e18: 8 total, 1 up, 8 in 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394]' entity='osd.1' 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: osd.1 [v2:172.21.15.37:6802/398101394,v1:172.21.15.37:6803/398101394] boot 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: osdmap e19: 8 total, 2 up, 8 in 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:14.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:13 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:15.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:14 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:15.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:14 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:15.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:14 smithi123 ceph-mon[31187]: pgmap v63: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-04-27T02:51:15.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:14 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:15.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:14 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:15.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:14 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:15.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:14 smithi037 ceph-mon[22326]: pgmap v63: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-04-27T02:51:15.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:14 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:15.900 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:16.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:16.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:16.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991] boot 2024-04-27T02:51:16.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: osdmap e20: 8 total, 3 up, 8 in 2024-04-27T02:51:16.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:51:16.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:15 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/832808189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:16.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:16.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:16.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: osd.2 [v2:172.21.15.123:6808/3729701991,v1:172.21.15.123:6809/3729701991] boot 2024-04-27T02:51:16.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: osdmap e20: 8 total, 3 up, 8 in 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:51:16.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:15 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/832808189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:17.178 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":20,"num_osds":8,"num_up_osds":3,"osd_up_since":1714186274,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:17.230 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: Deploying daemon osd.6 on smithi123 2024-04-27T02:51:17.230 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: osdmap e21: 8 total, 3 up, 8 in 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:17.231 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:16 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:51:17.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: Deploying daemon osd.6 on smithi123 2024-04-27T02:51:17.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-27T02:51:17.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: osdmap e21: 8 total, 3 up, 8 in 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:17.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:16 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:51:18.179 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:18.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-27T02:51:18.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: osdmap e22: 8 total, 3 up, 8 in 2024-04-27T02:51:18.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:18.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: pgmap v69: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:18.519 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:18 smithi123 ceph-mon[31187]: Deploying daemon osd.5 on smithi037 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: osdmap e22: 8 total, 3 up, 8 in 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: pgmap v69: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-27T02:51:18.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:18.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:18.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-27T02:51:18.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:18.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:18 smithi037 ceph-mon[22326]: Deploying daemon osd.5 on smithi037 2024-04-27T02:51:18.636 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:19.380 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: osdmap e23: 8 total, 3 up, 8 in 2024-04-27T02:51:19.380 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-27T02:51:19.381 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:19 smithi123 ceph-mon[31187]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: osdmap e23: 8 total, 3 up, 8 in 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:19.516 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-27T02:51:19.517 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:19 smithi037 ceph-mon[22326]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-27T02:51:20.521 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50483]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-27T02:51:20.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50483]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-27T02:51:20.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50483]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-27T02:51:20.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50483]: pam_unix(sudo:session): session closed for user root 2024-04-27T02:51:20.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:20.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: osdmap e24: 8 total, 3 up, 8 in 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:20.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:20 smithi123 ceph-mon[31187]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-27T02:51:20.854 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50504]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-27T02:51:20.854 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50504]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-27T02:51:20.854 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50504]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-27T02:51:20.854 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 sudo[50504]: pam_unix(sudo:session): session closed for user root 2024-04-27T02:51:20.854 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: osdmap e24: 8 total, 3 up, 8 in 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:20.855 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:20 smithi037 ceph-mon[22326]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: pgmap v72: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: osdmap e25: 8 total, 3 up, 8 in 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: mgrmap e19: smithi037.opdlyg(active, since 2m), standbys: smithi123.vxrhov 2024-04-27T02:51:21.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-27T02:51:21.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:21 smithi037 ceph-mon[22326]: from='osd.4 ' entity='osd.4' 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: pgmap v72: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: osdmap e25: 8 total, 3 up, 8 in 2024-04-27T02:51:21.806 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: mgrmap e19: smithi037.opdlyg(active, since 2m), standbys: smithi123.vxrhov 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-27T02:51:21.807 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 ceph-mon[31187]: from='osd.4 ' entity='osd.4' 2024-04-27T02:51:22.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 sudo[41630]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-27T02:51:22.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 sudo[41630]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-27T02:51:22.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 sudo[41630]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-27T02:51:22.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:21 smithi123 sudo[41630]: pam_unix(sudo:session): session closed for user root 2024-04-27T02:51:22.388 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 sudo[41638]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-27T02:51:22.388 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 sudo[41638]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-27T02:51:22.389 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 sudo[41638]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-27T02:51:22.389 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 sudo[41638]: pam_unix(sudo:session): session closed for user root 2024-04-27T02:51:22.419 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 12 KiB/s rd, 620 KiB/s wr, 41 op/s 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091] boot 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: osdmap e26: 8 total, 4 up, 8 in 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:22.665 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:22.666 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:22 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1871011252' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail; 12 KiB/s rd, 620 KiB/s wr, 41 op/s 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: osd.4 [v2:172.21.15.123:6816/4001997091,v1:172.21.15.123:6817/4001997091] boot 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: osdmap e26: 8 total, 4 up, 8 in 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:22.682 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi037"}]: dispatch 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "mon metadata", "id": "smithi123"}]: dispatch 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:22.683 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:22 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1871011252' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:23.098 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":26,"num_osds":8,"num_up_osds":4,"osd_up_since":1714186281,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:23.681 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: osdmap e27: 8 total, 4 up, 8 in 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542] boot 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: osdmap e28: 8 total, 5 up, 8 in 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:23.682 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:24.021 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: osdmap e27: 8 total, 4 up, 8 in 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542]' entity='osd.3' 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: osd.3 [v2:172.21.15.37:6810/3812786542,v1:172.21.15.37:6811/3812786542] boot 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: osdmap e28: 8 total, 5 up, 8 in 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-27T02:51:24.022 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:24.023 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:24.023 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:24.099 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: pgmap v77: 1 pgs: 1 peering; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail; 6.2 KiB/s rd, 310 KiB/s wr, 20 op/s 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: osdmap e29: 8 total, 5 up, 8 in 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:24.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:25.027 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:25.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: pgmap v77: 1 pgs: 1 peering; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail; 6.2 KiB/s rd, 310 KiB/s wr, 20 op/s 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-04-27T02:51:25.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: osdmap e29: 8 total, 5 up, 8 in 2024-04-27T02:51:25.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:25.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:25.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:25.709 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:25.709 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:25.710 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:25.710 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:25.710 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-04-27T02:51:25.710 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:25.710 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:25 smithi037 ceph-mon[22326]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:26.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:26.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]: dispatch 2024-04-27T02:51:26.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:26.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:26.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-04-27T02:51:26.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:26.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:25 smithi123 ceph-mon[31187]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi123", "root=default"]}]': finished 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: pgmap v80: 1 pgs: 1 remapped+peering; 577 KiB data, 536 MiB used, 446 GiB / 447 GiB avail; 5.0 KiB/s rd, 277 KiB/s wr, 16 op/s 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: Deploying daemon osd.7 on smithi037 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: osdmap e30: 8 total, 5 up, 8 in 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947] boot 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: osdmap e31: 8 total, 6 up, 8 in 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:26.732 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:26.733 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:26 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:27.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: pgmap v80: 1 pgs: 1 remapped+peering; 577 KiB data, 536 MiB used, 446 GiB / 447 GiB avail; 5.0 KiB/s rd, 277 KiB/s wr, 16 op/s 2024-04-27T02:51:27.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: Deploying daemon osd.7 on smithi037 2024-04-27T02:51:27.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: osdmap e30: 8 total, 5 up, 8 in 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: osd.6 [v2:172.21.15.123:6824/3947777947,v1:172.21.15.123:6825/3947777947] boot 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: osdmap e31: 8 total, 6 up, 8 in 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-04-27T02:51:27.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:26 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:27.463 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:27.849 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:27.849 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:27.849 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: osdmap e32: 8 total, 6 up, 8 in 2024-04-27T02:51:27.849 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:27.849 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:27 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/290009235' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: osdmap e32: 8 total, 6 up, 8 in 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:27.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:27.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:27 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/290009235' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:28.159 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":32,"num_osds":8,"num_up_osds":6,"osd_up_since":1714186286,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:28.912 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:28 smithi037 ceph-mon[22326]: pgmap v84: 1 pgs: 1 remapped+peering; 577 KiB data, 567 MiB used, 536 GiB / 536 GiB avail; 5.6 KiB/s rd, 309 KiB/s wr, 18 op/s 2024-04-27T02:51:29.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:28 smithi123 ceph-mon[31187]: pgmap v84: 1 pgs: 1 remapped+peering; 577 KiB data, 567 MiB used, 536 GiB / 536 GiB avail; 5.6 KiB/s rd, 309 KiB/s wr, 18 op/s 2024-04-27T02:51:29.160 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:29.566 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:29.701 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:29 smithi037 ceph-mon[22326]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-27T02:51:30.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:29 smithi123 ceph-mon[31187]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-27T02:51:30.865 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 126 KiB/s, 0 objects/s recovering 2024-04-27T02:51:30.866 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-27T02:51:30.866 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: osdmap e33: 8 total, 6 up, 8 in 2024-04-27T02:51:30.866 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:30.866 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:30.866 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:30 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:31.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 126 KiB/s, 0 objects/s recovering 2024-04-27T02:51:31.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-27T02:51:31.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: osdmap e33: 8 total, 6 up, 8 in 2024-04-27T02:51:31.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:31.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:31.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:30 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:31.815 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:31.815 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: osdmap e34: 8 total, 6 up, 8 in 2024-04-27T02:51:31.815 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:31.815 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:31.815 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:31.816 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' 2024-04-27T02:51:31.816 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:31 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:32.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:32.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: osdmap e34: 8 total, 6 up, 8 in 2024-04-27T02:51:32.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:32.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:32.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:32.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574]' entity='osd.5' 2024-04-27T02:51:32.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:31 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:32.147 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:32.920 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 113 KiB/s, 0 objects/s recovering 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574] boot 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: osdmap e35: 8 total, 7 up, 8 in 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:32.921 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:32 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/653333716' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:32.951 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":35,"num_osds":8,"num_up_osds":7,"osd_up_since":1714186292,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 113 KiB/s, 0 objects/s recovering 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: osd.5 [v2:172.21.15.37:6818/4170476574,v1:172.21.15.37:6819/4170476574] boot 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: osdmap e35: 8 total, 7 up, 8 in 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:33.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:32 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/653333716' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:33.952 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:34.549 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:34.669 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:34 smithi037 ceph-mon[22326]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-27T02:51:34.670 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:34 smithi037 ceph-mon[22326]: osdmap e36: 8 total, 7 up, 8 in 2024-04-27T02:51:34.670 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:34.670 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:35.100 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:34 smithi123 ceph-mon[31187]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-27T02:51:35.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:34 smithi123 ceph-mon[31187]: osdmap e36: 8 total, 7 up, 8 in 2024-04-27T02:51:35.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:35.101 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:36.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:36 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:36.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:36 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:36.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:36 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:36.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:36 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:36.922 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:37.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:37 smithi037 ceph-mon[22326]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:37.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:37 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3782007805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:37.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:37 smithi123 ceph-mon[31187]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:37.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:37 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3782007805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:38.371 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":36,"num_osds":8,"num_up_osds":7,"osd_up_since":1714186292,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":0} 2024-04-27T02:51:39.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:39 smithi037 ceph-mon[22326]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:39.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:39 smithi037 ceph-mon[22326]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-04-27T02:51:39.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:39 smithi123 ceph-mon[31187]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:39.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:39 smithi123 ceph-mon[31187]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-04-27T02:51:39.372 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-27T02:51:40.093 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:40.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-04-27T02:51:40.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: osdmap e37: 8 total, 7 up, 8 in 2024-04-27T02:51:40.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:40.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:40.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:40.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:40 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:40.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-04-27T02:51:40.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: osdmap e37: 8 total, 7 up, 8 in 2024-04-27T02:51:40.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]: dispatch 2024-04-27T02:51:40.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:40.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:40.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:40 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:41.176 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:41.176 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:41.177 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: osdmap e38: 8 total, 7 up, 8 in 2024-04-27T02:51:41.177 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:41.177 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:41.177 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: from='osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi037", "root=default"]}]': finished 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: osdmap e38: 8 total, 7 up, 8 in 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:41.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:51:41.920 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: purged_snaps scrub starts 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: purged_snaps scrub ok 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458] boot 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: osdmap e39: 8 total, 8 up, 8 in 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: osdmap e40: 8 total, 8 up, 8 in 2024-04-27T02:51:42.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:42 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3217098344' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:42.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: purged_snaps scrub starts 2024-04-27T02:51:42.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: purged_snaps scrub ok 2024-04-27T02:51:42.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: osd.7 [v2:172.21.15.37:6826/785284458,v1:172.21.15.37:6827/785284458] boot 2024-04-27T02:51:42.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: osdmap e39: 8 total, 8 up, 8 in 2024-04-27T02:51:42.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-04-27T02:51:42.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: osdmap e40: 8 total, 8 up, 8 in 2024-04-27T02:51:42.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:42 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3217098344' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-27T02:51:42.980 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":40,"num_osds":8,"num_up_osds":8,"osd_up_since":1714186301,"num_in_osds":8,"osd_in_since":1714186252,"num_remapped_pgs":1} 2024-04-27T02:51:42.980 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd dump --format=json 2024-04-27T02:51:43.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:43 smithi037 ceph-mon[22326]: pgmap v99: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:43.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:43 smithi037 ceph-mon[22326]: osdmap e41: 8 total, 8 up, 8 in 2024-04-27T02:51:43.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:43 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:43.272 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:43 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:43.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:43 smithi123 ceph-mon[31187]: pgmap v99: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:43.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:43 smithi123 ceph-mon[31187]: osdmap e41: 8 total, 8 up, 8 in 2024-04-27T02:51:43.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:43 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:43.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:43 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:43.881 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:44.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:44 smithi037 ceph-mon[22326]: osdmap e42: 8 total, 8 up, 8 in 2024-04-27T02:51:44.260 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:44 smithi037 ceph-mon[22326]: pgmap v102: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:44.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:44 smithi123 ceph-mon[31187]: osdmap e42: 8 total, 8 up, 8 in 2024-04-27T02:51:44.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:44 smithi123 ceph-mon[31187]: pgmap v102: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:45.271 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:45 smithi037 ceph-mon[22326]: osdmap e43: 8 total, 8 up, 8 in 2024-04-27T02:51:45.513 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:45 smithi123 ceph-mon[31187]: osdmap e43: 8 total, 8 up, 8 in 2024-04-27T02:51:46.424 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:51:46.424 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":43,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","created":"2024-04-27T02:47:05.996288+0000","modified":"2024-04-27T02:51:44.101918+0000","last_up_change":"2024-04-27T02:51:41.047981+0000","last_in_change":"2024-04-27T02:50:52.233668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-27T02:51:15.669644+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":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"17670074-c455-4137-9fc3-4bbe84ac9d47","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6801","nonce":3259082575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6803","nonce":3259082575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6807","nonce":3259082575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6805","nonce":3259082575}]},"public_addr":"172.21.15.123:6801/3259082575","cluster_addr":"172.21.15.123:6803/3259082575","heartbeat_back_addr":"172.21.15.123:6807/3259082575","heartbeat_front_addr":"172.21.15.123:6805/3259082575","state":["exists","up"]},{"osd":1,"uuid":"f4a233c3-1f84-4f84-9d20-e1d3ca92f708","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6803","nonce":398101394}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6805","nonce":398101394}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6809","nonce":398101394}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6807","nonce":398101394}]},"public_addr":"172.21.15.37:6803/398101394","cluster_addr":"172.21.15.37:6805/398101394","heartbeat_back_addr":"172.21.15.37:6809/398101394","heartbeat_front_addr":"172.21.15.37:6807/398101394","state":["exists","up"]},{"osd":2,"uuid":"ef040aa3-f2e4-487c-a038-4d6c6f4b43a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6808","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6809","nonce":3729701991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6811","nonce":3729701991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6815","nonce":3729701991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6813","nonce":3729701991}]},"public_addr":"172.21.15.123:6809/3729701991","cluster_addr":"172.21.15.123:6811/3729701991","heartbeat_back_addr":"172.21.15.123:6815/3729701991","heartbeat_front_addr":"172.21.15.123:6813/3729701991","state":["exists","up"]},{"osd":3,"uuid":"61ec827f-eaba-4d7d-ba34-ca8d2b593c8c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6810","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6811","nonce":3812786542}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6813","nonce":3812786542}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6817","nonce":3812786542}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6815","nonce":3812786542}]},"public_addr":"172.21.15.37:6811/3812786542","cluster_addr":"172.21.15.37:6813/3812786542","heartbeat_back_addr":"172.21.15.37:6817/3812786542","heartbeat_front_addr":"172.21.15.37:6815/3812786542","state":["exists","up"]},{"osd":4,"uuid":"8e829393-b0ce-4999-aade-c324f700aea6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6816","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6817","nonce":4001997091}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6819","nonce":4001997091}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6823","nonce":4001997091}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6821","nonce":4001997091}]},"public_addr":"172.21.15.123:6817/4001997091","cluster_addr":"172.21.15.123:6819/4001997091","heartbeat_back_addr":"172.21.15.123:6823/4001997091","heartbeat_front_addr":"172.21.15.123:6821/4001997091","state":["exists","up"]},{"osd":5,"uuid":"1d14bb6a-a35a-449b-b8a3-5f455ed27ff8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6818","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6819","nonce":4170476574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6821","nonce":4170476574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6825","nonce":4170476574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6823","nonce":4170476574}]},"public_addr":"172.21.15.37:6819/4170476574","cluster_addr":"172.21.15.37:6821/4170476574","heartbeat_back_addr":"172.21.15.37:6825/4170476574","heartbeat_front_addr":"172.21.15.37:6823/4170476574","state":["exists","up"]},{"osd":6,"uuid":"3b120967-a7fa-485e-ad56-3fd896859c8e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6824","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6825","nonce":3947777947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6827","nonce":3947777947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6831","nonce":3947777947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6829","nonce":3947777947}]},"public_addr":"172.21.15.123:6825/3947777947","cluster_addr":"172.21.15.123:6827/3947777947","heartbeat_back_addr":"172.21.15.123:6831/3947777947","heartbeat_front_addr":"172.21.15.123:6829/3947777947","state":["exists","up"]},{"osd":7,"uuid":"3403cdab-b7bf-4223-a25d-82be54827980","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6827","nonce":785284458}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6829","nonce":785284458}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6833","nonce":785284458}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6831","nonce":785284458}]},"public_addr":"172.21.15.37:6827/785284458","cluster_addr":"172.21.15.37:6829/785284458","heartbeat_back_addr":"172.21.15.37:6833/785284458","heartbeat_front_addr":"172.21.15.37:6831/785284458","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:08.017464+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:12.857755+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:13.532570+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:21.957335+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:19.266229+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:29.697089+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:24.846945+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:39.153023+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:6800/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6801/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6800/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/4284692196":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2060537970":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/3548625430":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6801/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2580331380":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/4131259396":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/1054263339":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2112522893":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2225880242":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6800/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:6801/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2850609927":"2024-04-28T02:48:08.075403+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-27T02:51:46.425 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:46 smithi037 ceph-mon[22326]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:46.516 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:46 smithi123 ceph-mon[31187]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2110907453' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: Detected new or changed devices on smithi123 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.346 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.347 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.347 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.347 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: Adjusting osd_memory_target on smithi123 to 3728M 2024-04-27T02:51:47.347 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:47 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2110907453' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:51:47.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: Detected new or changed devices on smithi123 2024-04-27T02:51:47.350 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: Adjusting osd_memory_target on smithi123 to 3728M 2024-04-27T02:51:47.351 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:47 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:47.375 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-27T02:51:15.669644+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': '23', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-27T02:51:47.375 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-27T02:51:47.988 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:48.373 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:48 smithi123 ceph-mon[31187]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-27T02:51:48.385 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:48 smithi037 ceph-mon[22326]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-27T02:51:49.450 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:49 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:49.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:49 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:51:49.940 INFO:teuthology.orchestra.run.smithi037.stdout:pg_num: 1 2024-04-27T02:51:50.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:50 smithi037 ceph-mon[22326]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-04-27T02:51:50.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:50 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:50.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:50 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:50.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:50 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1221764711' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-27T02:51:50.583 INFO:tasks.cephadm:Setting up client nodes... 2024-04-27T02:51:50.583 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-04-27T02:51:50.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:50 smithi123 ceph-mon[31187]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-04-27T02:51:50.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:50 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:50.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:50 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:50.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:50 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1221764711' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-27T02:51:51.912 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:52.457 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:52 smithi037 ceph-mon[22326]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-04-27T02:51:52.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:52 smithi123 ceph-mon[31187]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-04-27T02:51:54.300 INFO:teuthology.orchestra.run.smithi037.stdout:[client.0] 2024-04-27T02:51:54.300 INFO:teuthology.orchestra.run.smithi037.stdout: key = AQBKaCxmGuX8ERAAY4SFSUkL7rGDU6vy1Fd7og== 2024-04-27T02:51:54.597 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:54 smithi037 ceph-mon[22326]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-27T02:51:54.600 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:54 smithi123 ceph-mon[31187]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-27T02:51:54.902 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:51:54.902 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-04-27T02:51:54.902 DEBUG:teuthology.orchestra.run.smithi037:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-04-27T02:51:54.941 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-04-27T02:51:55.195 INFO:teuthology.orchestra.run.smithi123.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi123/config 2024-04-27T02:51:55.545 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:55 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1635361335' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:55.545 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:55 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1635361335' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-27T02:51:55.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:55 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1635361335' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:55.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:55 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1635361335' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: Detected new or changed devices on smithi037 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: Adjusting osd_memory_target on smithi037 to 2961M 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:51:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:56 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: Detected new or changed devices on smithi037 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: Adjusting osd_memory_target on smithi037 to 2961M 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:51:56.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:56 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:51:57.176 INFO:teuthology.orchestra.run.smithi123.stdout:[client.1] 2024-04-27T02:51:57.176 INFO:teuthology.orchestra.run.smithi123.stdout: key = AQBNaCxmZn59ChAAueyVUxCzkHAz6kDHGU1ZRA== 2024-04-27T02:51:57.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:57 smithi123 ceph-mon[31187]: from='client.? 172.21.15.123:0/4099154420' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:57.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:57 smithi123 ceph-mon[31187]: from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:57.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:57 smithi123 ceph-mon[31187]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-27T02:51:57.664 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:57 smithi037 ceph-mon[22326]: from='client.? 172.21.15.123:0/4099154420' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:57.664 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:57 smithi037 ceph-mon[22326]: from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-04-27T02:51:57.664 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:57 smithi037 ceph-mon[22326]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-04-27T02:51:58.080 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:51:58.080 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-04-27T02:51:58.080 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-04-27T02:51:58.121 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-27T02:51:58.121 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-27T02:51:58.121 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph mgr dump --format=json 2024-04-27T02:51:58.380 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:51:58.675 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:51:58 smithi123 ceph-mon[31187]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-27T02:51:58.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:51:58 smithi037 ceph-mon[22326]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-27T02:52:00.737 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:00 smithi037 ceph-mon[22326]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:00.850 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:00 smithi123 ceph-mon[31187]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:01.069 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:01.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:01 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2671528866' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-27T02:52:01.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:01 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2671528866' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-27T02:52:01.838 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":19,"flags":0,"active_gid":14215,"active_name":"smithi037.opdlyg","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6800","nonce":3977192141},{"type":"v1","addr":"172.21.15.37:6801","nonce":3977192141}]},"active_addr":"172.21.15.37:6801/3977192141","active_change":"2024-04-27T02:49:19.159807+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14240,"name":"smithi123.vxrhov","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.37:8443/","prometheus":"http://172.21.15.37:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":485636173}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":670362999}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":1589287875}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.37:0","nonce":2600471668}]}]} 2024-04-27T02:52:01.844 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-27T02:52:01.844 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-27T02:52:01.844 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd dump --format=json 2024-04-27T02:52:02.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:02 smithi123 ceph-mon[31187]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:02.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:02 smithi037 ceph-mon[22326]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:03.042 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:04.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:04 smithi037 ceph-mon[22326]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:04.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:04.802 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:04 smithi123 ceph-mon[31187]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:04.803 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:06.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:06 smithi037 ceph-mon[22326]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:06.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:06.772 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:06.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:06 smithi123 ceph-mon[31187]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:06.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:06.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:07.487 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:07.488 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":43,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","created":"2024-04-27T02:47:05.996288+0000","modified":"2024-04-27T02:51:44.101918+0000","last_up_change":"2024-04-27T02:51:41.047981+0000","last_in_change":"2024-04-27T02:50:52.233668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-27T02:51:15.669644+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":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"17670074-c455-4137-9fc3-4bbe84ac9d47","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6801","nonce":3259082575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6803","nonce":3259082575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6807","nonce":3259082575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6805","nonce":3259082575}]},"public_addr":"172.21.15.123:6801/3259082575","cluster_addr":"172.21.15.123:6803/3259082575","heartbeat_back_addr":"172.21.15.123:6807/3259082575","heartbeat_front_addr":"172.21.15.123:6805/3259082575","state":["exists","up"]},{"osd":1,"uuid":"f4a233c3-1f84-4f84-9d20-e1d3ca92f708","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6803","nonce":398101394}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6805","nonce":398101394}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6809","nonce":398101394}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6807","nonce":398101394}]},"public_addr":"172.21.15.37:6803/398101394","cluster_addr":"172.21.15.37:6805/398101394","heartbeat_back_addr":"172.21.15.37:6809/398101394","heartbeat_front_addr":"172.21.15.37:6807/398101394","state":["exists","up"]},{"osd":2,"uuid":"ef040aa3-f2e4-487c-a038-4d6c6f4b43a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6808","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6809","nonce":3729701991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6811","nonce":3729701991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6815","nonce":3729701991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6813","nonce":3729701991}]},"public_addr":"172.21.15.123:6809/3729701991","cluster_addr":"172.21.15.123:6811/3729701991","heartbeat_back_addr":"172.21.15.123:6815/3729701991","heartbeat_front_addr":"172.21.15.123:6813/3729701991","state":["exists","up"]},{"osd":3,"uuid":"61ec827f-eaba-4d7d-ba34-ca8d2b593c8c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6810","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6811","nonce":3812786542}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6813","nonce":3812786542}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6817","nonce":3812786542}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6815","nonce":3812786542}]},"public_addr":"172.21.15.37:6811/3812786542","cluster_addr":"172.21.15.37:6813/3812786542","heartbeat_back_addr":"172.21.15.37:6817/3812786542","heartbeat_front_addr":"172.21.15.37:6815/3812786542","state":["exists","up"]},{"osd":4,"uuid":"8e829393-b0ce-4999-aade-c324f700aea6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6816","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6817","nonce":4001997091}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6819","nonce":4001997091}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6823","nonce":4001997091}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6821","nonce":4001997091}]},"public_addr":"172.21.15.123:6817/4001997091","cluster_addr":"172.21.15.123:6819/4001997091","heartbeat_back_addr":"172.21.15.123:6823/4001997091","heartbeat_front_addr":"172.21.15.123:6821/4001997091","state":["exists","up"]},{"osd":5,"uuid":"1d14bb6a-a35a-449b-b8a3-5f455ed27ff8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6818","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6819","nonce":4170476574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6821","nonce":4170476574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6825","nonce":4170476574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6823","nonce":4170476574}]},"public_addr":"172.21.15.37:6819/4170476574","cluster_addr":"172.21.15.37:6821/4170476574","heartbeat_back_addr":"172.21.15.37:6825/4170476574","heartbeat_front_addr":"172.21.15.37:6823/4170476574","state":["exists","up"]},{"osd":6,"uuid":"3b120967-a7fa-485e-ad56-3fd896859c8e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6824","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6825","nonce":3947777947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6827","nonce":3947777947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6831","nonce":3947777947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6829","nonce":3947777947}]},"public_addr":"172.21.15.123:6825/3947777947","cluster_addr":"172.21.15.123:6827/3947777947","heartbeat_back_addr":"172.21.15.123:6831/3947777947","heartbeat_front_addr":"172.21.15.123:6829/3947777947","state":["exists","up"]},{"osd":7,"uuid":"3403cdab-b7bf-4223-a25d-82be54827980","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6827","nonce":785284458}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6829","nonce":785284458}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6833","nonce":785284458}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6831","nonce":785284458}]},"public_addr":"172.21.15.37:6827/785284458","cluster_addr":"172.21.15.37:6829/785284458","heartbeat_back_addr":"172.21.15.37:6833/785284458","heartbeat_front_addr":"172.21.15.37:6831/785284458","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:08.017464+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:12.857755+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:13.532570+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:21.957335+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:19.266229+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:29.697089+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:24.846945+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:39.153023+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:6800/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6801/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6800/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/4284692196":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2060537970":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/3548625430":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6801/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2580331380":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/4131259396":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/1054263339":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2112522893":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2225880242":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6800/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:6801/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2850609927":"2024-04-28T02:48:08.075403+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-27T02:52:08.469 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-27T02:52:08.469 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd dump --format=json 2024-04-27T02:52:08.766 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:08 smithi037 ceph-mon[22326]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:08.766 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:08 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2377141371' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:52:08.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:08 smithi123 ceph-mon[31187]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:08.851 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:08 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2377141371' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:52:09.205 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:10.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:10 smithi037 ceph-mon[22326]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:10.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:10.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:10.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:10 smithi123 ceph-mon[31187]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:10.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:10.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:52:11.133 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:11.133 INFO:teuthology.orchestra.run.smithi037.stdout:{"epoch":43,"fsid":"379591b2-0440-11ef-bc93-c7b262605968","created":"2024-04-27T02:47:05.996288+0000","modified":"2024-04-27T02:51:44.101918+0000","last_up_change":"2024-04-27T02:51:41.047981+0000","last_in_change":"2024-04-27T02:50:52.233668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-27T02:51:15.669644+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":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"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":"17670074-c455-4137-9fc3-4bbe84ac9d47","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6800","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6801","nonce":3259082575}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6802","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6803","nonce":3259082575}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6806","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6807","nonce":3259082575}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6804","nonce":3259082575},{"type":"v1","addr":"172.21.15.123:6805","nonce":3259082575}]},"public_addr":"172.21.15.123:6801/3259082575","cluster_addr":"172.21.15.123:6803/3259082575","heartbeat_back_addr":"172.21.15.123:6807/3259082575","heartbeat_front_addr":"172.21.15.123:6805/3259082575","state":["exists","up"]},{"osd":1,"uuid":"f4a233c3-1f84-4f84-9d20-e1d3ca92f708","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6802","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6803","nonce":398101394}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6804","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6805","nonce":398101394}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6808","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6809","nonce":398101394}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6806","nonce":398101394},{"type":"v1","addr":"172.21.15.37:6807","nonce":398101394}]},"public_addr":"172.21.15.37:6803/398101394","cluster_addr":"172.21.15.37:6805/398101394","heartbeat_back_addr":"172.21.15.37:6809/398101394","heartbeat_front_addr":"172.21.15.37:6807/398101394","state":["exists","up"]},{"osd":2,"uuid":"ef040aa3-f2e4-487c-a038-4d6c6f4b43a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6808","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6809","nonce":3729701991}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6810","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6811","nonce":3729701991}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6814","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6815","nonce":3729701991}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6812","nonce":3729701991},{"type":"v1","addr":"172.21.15.123:6813","nonce":3729701991}]},"public_addr":"172.21.15.123:6809/3729701991","cluster_addr":"172.21.15.123:6811/3729701991","heartbeat_back_addr":"172.21.15.123:6815/3729701991","heartbeat_front_addr":"172.21.15.123:6813/3729701991","state":["exists","up"]},{"osd":3,"uuid":"61ec827f-eaba-4d7d-ba34-ca8d2b593c8c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6810","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6811","nonce":3812786542}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6812","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6813","nonce":3812786542}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6816","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6817","nonce":3812786542}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6814","nonce":3812786542},{"type":"v1","addr":"172.21.15.37:6815","nonce":3812786542}]},"public_addr":"172.21.15.37:6811/3812786542","cluster_addr":"172.21.15.37:6813/3812786542","heartbeat_back_addr":"172.21.15.37:6817/3812786542","heartbeat_front_addr":"172.21.15.37:6815/3812786542","state":["exists","up"]},{"osd":4,"uuid":"8e829393-b0ce-4999-aade-c324f700aea6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6816","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6817","nonce":4001997091}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6818","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6819","nonce":4001997091}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6822","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6823","nonce":4001997091}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6820","nonce":4001997091},{"type":"v1","addr":"172.21.15.123:6821","nonce":4001997091}]},"public_addr":"172.21.15.123:6817/4001997091","cluster_addr":"172.21.15.123:6819/4001997091","heartbeat_back_addr":"172.21.15.123:6823/4001997091","heartbeat_front_addr":"172.21.15.123:6821/4001997091","state":["exists","up"]},{"osd":5,"uuid":"1d14bb6a-a35a-449b-b8a3-5f455ed27ff8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6818","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6819","nonce":4170476574}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6820","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6821","nonce":4170476574}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6824","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6825","nonce":4170476574}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6822","nonce":4170476574},{"type":"v1","addr":"172.21.15.37:6823","nonce":4170476574}]},"public_addr":"172.21.15.37:6819/4170476574","cluster_addr":"172.21.15.37:6821/4170476574","heartbeat_back_addr":"172.21.15.37:6825/4170476574","heartbeat_front_addr":"172.21.15.37:6823/4170476574","state":["exists","up"]},{"osd":6,"uuid":"3b120967-a7fa-485e-ad56-3fd896859c8e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6824","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6825","nonce":3947777947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6826","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6827","nonce":3947777947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6830","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6831","nonce":3947777947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.123:6828","nonce":3947777947},{"type":"v1","addr":"172.21.15.123:6829","nonce":3947777947}]},"public_addr":"172.21.15.123:6825/3947777947","cluster_addr":"172.21.15.123:6827/3947777947","heartbeat_back_addr":"172.21.15.123:6831/3947777947","heartbeat_front_addr":"172.21.15.123:6829/3947777947","state":["exists","up"]},{"osd":7,"uuid":"3403cdab-b7bf-4223-a25d-82be54827980","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6826","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6827","nonce":785284458}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6828","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6829","nonce":785284458}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6832","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6833","nonce":785284458}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.37:6830","nonce":785284458},{"type":"v1","addr":"172.21.15.37:6831","nonce":785284458}]},"public_addr":"172.21.15.37:6827/785284458","cluster_addr":"172.21.15.37:6829/785284458","heartbeat_back_addr":"172.21.15.37:6833/785284458","heartbeat_front_addr":"172.21.15.37:6831/785284458","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:08.017464+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:12.857755+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:13.532570+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:21.957335+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:19.266229+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:29.697089+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:24.846945+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-27T02:51:39.153023+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.37:6800/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6801/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6800/2704687803":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/4284692196":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2060537970":"2024-04-28T02:48:08.075403+0000","172.21.15.37:0/3548625430":"2024-04-28T02:48:08.075403+0000","172.21.15.37:6801/727391994":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2580331380":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/4131259396":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/1054263339":"2024-04-28T02:49:19.159629+0000","172.21.15.37:0/2112522893":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2225880242":"2024-04-28T02:49:19.159629+0000","172.21.15.37:6800/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:6801/1723314640":"2024-04-28T02:47:33.129259+0000","172.21.15.37:0/2850609927":"2024-04-28T02:48:08.075403+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-27T02:52:11.487 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:11 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3741648384' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:52:11.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:11 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3741648384' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-27T02:52:11.931 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-27T02:52:11.931 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-27T02:52:11.931 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-27T02:52:11.932 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-27T02:52:11.932 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-27T02:52:11.932 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-27T02:52:11.933 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-04-27T02:52:11.933 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-04-27T02:52:12.212 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:12 smithi037 ceph-mon[22326]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:12.442 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.443 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.445 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.445 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:12 smithi123 ceph-mon[31187]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:12.710 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.714 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.714 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:12.715 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:14.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:14 smithi037 ceph-mon[22326]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:14.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:14 smithi123 ceph-mon[31187]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:16.490 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:16 smithi037 ceph-mon[22326]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:16.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:16 smithi123 ceph-mon[31187]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:18.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:18 smithi037 ceph-mon[22326]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:18.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:18 smithi123 ceph-mon[31187]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:19.338 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:19.553 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:20.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:20 smithi037 ceph-mon[22326]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:20.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:20 smithi123 ceph-mon[31187]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:22.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:22 smithi037 ceph-mon[22326]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:22.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:22 smithi123 ceph-mon[31187]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:24.457 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:24 smithi037 ceph-mon[22326]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:24.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:24 smithi123 ceph-mon[31187]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:26.122 INFO:teuthology.orchestra.run.smithi037.stdout:167503724555 2024-04-27T02:52:26.122 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-04-27T02:52:26.372 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:26 smithi037 ceph-mon[22326]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:26.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:26 smithi123 ceph-mon[31187]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:26.982 INFO:teuthology.orchestra.run.smithi037.stdout:133143986190 2024-04-27T02:52:26.982 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-04-27T02:52:27.476 INFO:teuthology.orchestra.run.smithi037.stdout:81604378640 2024-04-27T02:52:27.476 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-27T02:52:27.899 INFO:teuthology.orchestra.run.smithi037.stdout:68719476754 2024-04-27T02:52:27.899 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-27T02:52:28.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:28 smithi037 ceph-mon[22326]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:28.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:28 smithi123 ceph-mon[31187]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:28.675 INFO:teuthology.orchestra.run.smithi037.stdout:85899345936 2024-04-27T02:52:28.675 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-27T02:52:29.036 INFO:teuthology.orchestra.run.smithi037.stdout:120259084303 2024-04-27T02:52:29.036 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-27T02:52:29.483 INFO:teuthology.orchestra.run.smithi037.stdout:150323855373 2024-04-27T02:52:29.484 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-27T02:52:29.864 INFO:teuthology.orchestra.run.smithi037.stdout:111669149711 2024-04-27T02:52:29.864 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-27T02:52:29.946 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:29.973 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:30.001 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:30.409 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:30 smithi037 ceph-mon[22326]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:30.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:30 smithi123 ceph-mon[31187]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:30.727 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:31.926 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:31.926 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:31.946 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:32.456 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:32 smithi037 ceph-mon[22326]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:32.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:32 smithi123 ceph-mon[31187]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:34.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:34 smithi037 ceph-mon[22326]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:34.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:34.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:34 smithi123 ceph-mon[31187]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:34.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:36.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:36 smithi037 ceph-mon[22326]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:36.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:36 smithi123 ceph-mon[31187]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:37.038 INFO:teuthology.orchestra.run.smithi037.stdout:81604378642 2024-04-27T02:52:37.246 INFO:teuthology.orchestra.run.smithi037.stdout:120259084305 2024-04-27T02:52:37.522 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:37 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/894100882' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-27T02:52:37.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:37 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/894100882' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-27T02:52:38.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:38 smithi037 ceph-mon[22326]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:38.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:38 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3646100605' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-27T02:52:38.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:38 smithi123 ceph-mon[31187]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:38.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:38 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3646100605' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-27T02:52:39.204 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378640 got 81604378642 for osd.1 2024-04-27T02:52:39.204 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:40.229 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:40.235 INFO:teuthology.orchestra.run.smithi037.stdout:167503724558 2024-04-27T02:52:40.347 INFO:teuthology.orchestra.run.smithi037.stdout:133143986193 2024-04-27T02:52:40.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:40 smithi037 ceph-mon[22326]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:40.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/391200787' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-04-27T02:52:40.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:40 smithi123 ceph-mon[31187]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:40.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:40 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/391200787' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-04-27T02:52:41.317 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724555 got 167503724558 for osd.7 2024-04-27T02:52:41.318 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:41.369 INFO:teuthology.orchestra.run.smithi037.stdout:68719476757 2024-04-27T02:52:41.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:41 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3986717879' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-04-27T02:52:41.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:41 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/1203802520' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-27T02:52:41.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:41 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3986717879' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-04-27T02:52:41.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:41 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/1203802520' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-27T02:52:41.982 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476754 got 68719476757 for osd.0 2024-04-27T02:52:41.982 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:42.385 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084303 got 120259084305 for osd.3 2024-04-27T02:52:42.385 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:42.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:42 smithi037 ceph-mon[22326]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:42.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:42 smithi123 ceph-mon[31187]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:43.223 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986190 got 133143986193 for osd.6 2024-04-27T02:52:43.223 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:44.354 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:44 smithi037 ceph-mon[22326]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:44.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:44 smithi123 ceph-mon[31187]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:45.227 INFO:teuthology.orchestra.run.smithi037.stdout:150323855378 2024-04-27T02:52:45.401 INFO:teuthology.orchestra.run.smithi037.stdout:111669149715 2024-04-27T02:52:45.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:45 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3929490802' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-27T02:52:45.590 INFO:teuthology.orchestra.run.smithi037.stdout:85899345940 2024-04-27T02:52:45.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:45 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3929490802' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-27T02:52:46.341 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345936 got 85899345940 for osd.2 2024-04-27T02:52:46.341 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:46.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:46 smithi037 ceph-mon[22326]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:46.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:46 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3874889611' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-27T02:52:46.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:46 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3004769659' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-27T02:52:46.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:46 smithi123 ceph-mon[31187]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:46.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:46 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3874889611' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-27T02:52:46.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:46 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3004769659' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-27T02:52:46.926 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149711 got 111669149715 for osd.4 2024-04-27T02:52:46.926 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:47.548 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855373 got 150323855378 for osd.5 2024-04-27T02:52:47.548 DEBUG:teuthology.parallel:result is None 2024-04-27T02:52:47.548 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-27T02:52:47.549 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph pg dump --format=json 2024-04-27T02:52:47.806 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:48.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:48 smithi037 ceph-mon[22326]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:48.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:48 smithi123 ceph-mon[31187]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:49.541 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:49 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:49.696 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:49.697 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:49 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:52:49.698 INFO:teuthology.orchestra.run.smithi037.stderr:dumped all 2024-04-27T02:52:50.420 INFO:teuthology.orchestra.run.smithi037.stdout:{"pg_ready":true,"pg_map":{"version":136,"stamp":"2024-04-27T02:52:49.206846+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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":177,"ondisk_log_size":177,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":225492,"kb_used_data":5132,"kb_used_omap":12,"kb_used_meta":220211,"kb_avail":749702956,"statfs":{"total":767926730752,"available":767695826944,"internally_reserved":0,"allocated":5255168,"data_stored":3198112,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":225496625},"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.002459"},"pg_stats":[{"pgid":"1.0","version":"26'177","reported_seq":252,"reported_epoch":43,"state":"active+clean","last_fresh":"2024-04-27T02:51:44.108506+0000","last_change":"2024-04-27T02:51:44.108165+0000","last_active":"2024-04-27T02:51:44.108506+0000","last_peered":"2024-04-27T02:51:44.108506+0000","last_clean":"2024-04-27T02:51:44.108506+0000","last_became_active":"2024-04-27T02:51:44.107661+0000","last_became_peered":"2024-04-27T02:51:44.107661+0000","last_unstale":"2024-04-27T02:51:44.108506+0000","last_undegraded":"2024-04-27T02:51:44.108506+0000","last_fullsized":"2024-04-27T02:51:44.108506+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-27T02:51:16.104684+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-27T02:51:16.104684+0000","last_clean_scrub_stamp":"2024-04-27T02:51:16.104684+0000","objects_scrubbed":0,"log_size":177,"log_dups_size":0,"ondisk_log_size":177,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-28T09:42:11.880115+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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":177,"ondisk_log_size":177,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724560,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28032,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713024,"statfs":{"total":95990841344,"available":95962136576,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":35,"seq":150323855379,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378645,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476759,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32184,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708872,"statfs":{"total":95990841344,"available":95957884928,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345941,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":26,"seq":111669149716,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084308,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28024,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713032,"statfs":{"total":95990841344,"available":95962144768,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":31,"seq":133143986195,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-27T02:52:50.421 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph pg dump --format=json 2024-04-27T02:52:50.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:50 smithi123 ceph-mon[31187]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:50.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:50 smithi123 ceph-mon[31187]: from='client.14528 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:52:50.676 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:50.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:50 smithi037 ceph-mon[22326]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:50.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:50 smithi037 ceph-mon[22326]: from='client.14528 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:52:52.445 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:52.447 INFO:teuthology.orchestra.run.smithi037.stderr:dumped all 2024-04-27T02:52:52.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:52 smithi123 ceph-mon[31187]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:52.773 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:52 smithi037 ceph-mon[22326]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:53.115 INFO:teuthology.orchestra.run.smithi037.stdout:{"pg_ready":true,"pg_map":{"version":137,"stamp":"2024-04-27T02:52:51.207361+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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":177,"ondisk_log_size":177,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":225492,"kb_used_data":5132,"kb_used_omap":12,"kb_used_meta":220211,"kb_avail":749702956,"statfs":{"total":767926730752,"available":767695826944,"internally_reserved":0,"allocated":5255168,"data_stored":3198112,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":225496625},"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.002422"},"pg_stats":[{"pgid":"1.0","version":"26'177","reported_seq":252,"reported_epoch":43,"state":"active+clean","last_fresh":"2024-04-27T02:51:44.108506+0000","last_change":"2024-04-27T02:51:44.108165+0000","last_active":"2024-04-27T02:51:44.108506+0000","last_peered":"2024-04-27T02:51:44.108506+0000","last_clean":"2024-04-27T02:51:44.108506+0000","last_became_active":"2024-04-27T02:51:44.107661+0000","last_became_peered":"2024-04-27T02:51:44.107661+0000","last_unstale":"2024-04-27T02:51:44.108506+0000","last_undegraded":"2024-04-27T02:51:44.108506+0000","last_fullsized":"2024-04-27T02:51:44.108506+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-27T02:51:16.104684+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-27T02:51:16.104684+0000","last_clean_scrub_stamp":"2024-04-27T02:51:16.104684+0000","objects_scrubbed":0,"log_size":177,"log_dups_size":0,"ondisk_log_size":177,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-28T09:42:11.880115+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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"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":146,"num_read_kb":127,"num_write":225,"num_write_kb":3982,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":177,"ondisk_log_size":177,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724561,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28032,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713024,"statfs":{"total":95990841344,"available":95962136576,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":35,"seq":150323855379,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378645,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476760,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32184,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708872,"statfs":{"total":95990841344,"available":95957884928,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345942,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":26,"seq":111669149716,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084308,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28024,"kb_used_data":1004,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713032,"statfs":{"total":95990841344,"available":95962144768,"internally_reserved":0,"allocated":1028096,"data_stored":768744,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":31,"seq":133143986195,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":424,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":434176,"data_stored":178376,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-27T02:52:53.116 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-27T02:52:53.116 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-27T02:52:53.116 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-27T02:52:53.116 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph health --format=json 2024-04-27T02:52:53.370 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:53.601 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:53 smithi037 ceph-mon[22326]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:52:53.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:53 smithi123 ceph-mon[31187]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:52:54.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:54 smithi037 ceph-mon[22326]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:54.601 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:54 smithi123 ceph-mon[31187]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:55.337 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:52:55.337 INFO:teuthology.orchestra.run.smithi037.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-27T02:52:56.089 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-27T02:52:56.089 INFO:tasks.cephadm:Setup complete, yielding 2024-04-27T02:52:56.090 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:52:56.100 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:52:56.101 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch status' 2024-04-27T02:52:56.355 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:56.477 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:56 smithi037 ceph-mon[22326]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:56.477 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:56 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/408022430' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-27T02:52:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:56 smithi123 ceph-mon[31187]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:56.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:56 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/408022430' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-27T02:52:58.301 INFO:teuthology.orchestra.run.smithi037.stdout:Backend: cephadm 2024-04-27T02:52:58.301 INFO:teuthology.orchestra.run.smithi037.stdout:Available: Yes 2024-04-27T02:52:58.301 INFO:teuthology.orchestra.run.smithi037.stdout:Paused: No 2024-04-27T02:52:58.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:58 smithi123 ceph-mon[31187]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:58.664 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:58 smithi037 ceph-mon[22326]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:52:59.019 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch ps' 2024-04-27T02:52:59.270 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:52:59.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:52:59 smithi123 ceph-mon[31187]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:52:59.618 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:52:59 smithi037 ceph-mon[22326]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:00.439 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:00 smithi037 ceph-mon[22326]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:00.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:00 smithi123 ceph-mon[31187]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager.smithi037 smithi037 *:9093,9094 running (2m) 71s ago 4m 26.2M - 0.25.0 c8568f914cd2 54eaa1ee6667 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi037 smithi037 running (4m) 71s ago 4m 7503k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 e84b215a6d91 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi123 smithi123 running (3m) 78s ago 3m 4916k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 5bb64fd80e85 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi037 smithi037 running (4m) 71s ago 4m 6660k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 f4d3291acd6d 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi123 smithi123 running (3m) 78s ago 3m 6656k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 533c2811a899 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:grafana.smithi037 smithi037 *:3000 running (2m) 71s ago 4m 74.0M - 9.4.12 2bacad6d85d8 2dce062532b0 2024-04-27T02:53:01.228 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi037.opdlyg smithi037 *:9283,8765,8443 running (5m) 71s ago 5m 498M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 9df5d588b4f6 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi123.vxrhov smithi123 *:8443,9283,8765 running (3m) 78s ago 3m 452M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 12ff8c1092a6 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi037 smithi037 running (5m) 71s ago 5m 46.6M 2048M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 585de42715eb 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi123 smithi123 running (3m) 78s ago 3m 38.9M 2048M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 c8307bb66d1f 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi037 smithi037 *:9100 running (4m) 71s ago 4m 13.7M - 1.5.0 0da6a335fe13 e09b9e6349c6 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi123 smithi123 *:9100 running (3m) 78s ago 3m 15.5M - 1.5.0 0da6a335fe13 522715799d40 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.0 smithi123 running (117s) 78s ago 117s 46.6M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 59b8f6164d44 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.1 smithi037 running (113s) 71s ago 112s 48.3M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 6fc581ddc7bb 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.2 smithi123 running (112s) 78s ago 111s 40.0M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 f40f0163a3e7 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.3 smithi037 running (103s) 71s ago 103s 41.0M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 60273beff7bf 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.4 smithi123 running (106s) 78s ago 106s 37.4M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 10aa25405bf2 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.5 smithi037 running (96s) 71s ago 95s 37.2M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 5b8613419b07 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.6 smithi123 running (100s) 78s ago 100s 28.8M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 458beed1c627 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:osd.7 smithi037 running (86s) 71s ago 86s 28.9M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 d1398778a697 2024-04-27T02:53:01.229 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus.smithi037 smithi037 *:9095 running (2m) 71s ago 3m 42.6M - 2.43.0 a07b618ecd1d 626384281e8d 2024-04-27T02:53:01.909 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch ls' 2024-04-27T02:53:02.158 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:02.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:02 smithi123 ceph-mon[31187]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:02.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:02 smithi123 ceph-mon[31187]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:02.615 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:02 smithi037 ceph-mon[22326]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:02.615 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:02 smithi037 ceph-mon[22326]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager ?:9093,9094 1/1 74s ago 5m count:1 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter 2/2 81s ago 5m * 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:crash 2/2 81s ago 5m * 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:grafana ?:3000 1/1 74s ago 5m count:1 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:mgr 2/2 81s ago 5m count:2 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:mon 2/2 81s ago 4m smithi037:172.21.15.37=smithi037;smithi123:172.21.15.123=smithi123;count:2 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter ?:9100 2/2 81s ago 5m * 2024-04-27T02:53:04.111 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 81s ago 3m * 2024-04-27T02:53:04.112 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus ?:9095 1/1 74s ago 5m count:1 2024-04-27T02:53:04.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:04 smithi123 ceph-mon[31187]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:04.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:04.760 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:04 smithi037 ceph-mon[22326]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:04.760 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:04.790 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch host ls' 2024-04-27T02:53:05.039 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:05.497 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:05 smithi037 ceph-mon[22326]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:05.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:05 smithi123 ceph-mon[31187]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:06.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:06 smithi037 ceph-mon[22326]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:06.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:06 smithi123 ceph-mon[31187]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:07.062 INFO:teuthology.orchestra.run.smithi037.stdout:HOST ADDR LABELS STATUS 2024-04-27T02:53:07.062 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 172.21.15.37 2024-04-27T02:53:07.062 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 172.21.15.123 2024-04-27T02:53:07.062 INFO:teuthology.orchestra.run.smithi037.stdout:2 hosts in cluster 2024-04-27T02:53:07.598 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:07 smithi037 ceph-mon[22326]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:07.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:07 smithi123 ceph-mon[31187]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:07.629 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch device ls' 2024-04-27T02:53:07.877 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:08.602 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:08 smithi123 ceph-mon[31187]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:08.679 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:08 smithi037 ceph-mon[22326]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:09.765 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 74s ago Has a FileSystem, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_cd02b378a85466085944 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_f082d335b87fc8dd21d3 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_ea9cf84238e077255540 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_4c0c4a7e55600c4be866 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400YK400BGN 372G No 82s ago Has a FileSystem, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme1n1 ssd Linux_6c101462796bbbe44a0b 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme2n1 ssd Linux_985b7efe24eb45370172 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme3n1 ssd Linux_71ccb995437e5cd74c75 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:09.766 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme4n1 ssd Linux_dece05276d76acc9cbdb 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:10.479 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:10 smithi037 ceph-mon[22326]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:10.479 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:53:10.479 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:10 smithi037 ceph-mon[22326]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:10.515 INFO:teuthology.run_tasks:Running task vip... 2024-04-27T02:53:10.526 INFO:tasks.vip:Allocating static IPs for each host... 2024-04-27T02:53:10.526 INFO:tasks.vip:peername 172.21.15.37 2024-04-27T02:53:10.530 INFO:tasks.vip:172.21.15.37 in 172.21.0.0/20, pos 3876 2024-04-27T02:53:10.534 INFO:tasks.vip:smithi037.front.sepia.ceph.com static 10.0.15.37, vnet 10.0.0.0/16 2024-04-27T02:53:10.534 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.37')] 2024-04-27T02:53:10.534 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip route ls 2024-04-27T02:53:10.562 INFO:teuthology.orchestra.run.smithi037.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.37 metric 100 2024-04-27T02:53:10.562 INFO:teuthology.orchestra.run.smithi037.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.37 metric 100 2024-04-27T02:53:10.564 INFO:tasks.vip:Configuring 10.0.15.37 on smithi037.front.sepia.ceph.com iface ens1f0... 2024-04-27T02:53:10.564 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr add 10.0.15.37/16 dev ens1f0 2024-04-27T02:53:10.593 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:10 smithi123 ceph-mon[31187]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:10.593 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:53:10.594 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:10 smithi123 ceph-mon[31187]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:10.630 INFO:tasks.vip:peername 172.21.15.123 2024-04-27T02:53:10.632 INFO:tasks.vip:172.21.15.123 in 172.21.0.0/20, pos 3962 2024-04-27T02:53:10.637 INFO:tasks.vip:smithi123.front.sepia.ceph.com static 10.0.15.123, vnet 10.0.0.0/16 2024-04-27T02:53:10.637 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip route ls 2024-04-27T02:53:10.661 INFO:teuthology.orchestra.run.smithi123.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.123 metric 100 2024-04-27T02:53:10.662 INFO:teuthology.orchestra.run.smithi123.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.123 metric 100 2024-04-27T02:53:10.663 INFO:tasks.vip:Configuring 10.0.15.123 on smithi123.front.sepia.ceph.com iface enp3s0f1... 2024-04-27T02:53:10.663 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr add 10.0.15.123/16 dev enp3s0f1 2024-04-27T02:53:10.727 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:53:10.736 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:10.736 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-04-27T02:53:11.323 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:13.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:12 smithi123 ceph-mon[31187]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:13.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:13.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:13.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:12 smithi037 ceph-mon[22326]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:13.213 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:13.214 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:13.817 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-27T02:53:13.817 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 78s ago Has a FileSystem, LVM detected 2024-04-27T02:53:13.817 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_cd02b378a85466085944 89.4G No 78s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.817 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_f082d335b87fc8dd21d3 89.4G No 78s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_ea9cf84238e077255540 89.4G No 78s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_4c0c4a7e55600c4be866 89.4G No 78s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400YK400BGN 372G No 86s ago Has a FileSystem, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme1n1 ssd Linux_6c101462796bbbe44a0b 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme2n1 ssd Linux_985b7efe24eb45370172 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme3n1 ssd Linux_71ccb995437e5cd74c75 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:13.818 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme4n1 ssd Linux_dece05276d76acc9cbdb 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:53:14.487 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-27T02:53:14.499 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:14.500 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-04-27T02:53:14.526 INFO:teuthology.orchestra.run.smithi037.stderr:+ systemctl stop nfs-server 2024-04-27T02:53:14.533 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi123.front.sepia.ceph.com 2024-04-27T02:53:14.533 DEBUG:teuthology.orchestra.run.smithi123:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-04-27T02:53:14.562 INFO:teuthology.orchestra.run.smithi123.stderr:+ systemctl stop nfs-server 2024-04-27T02:53:14.570 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:53:14.582 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:14.582 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-04-27T02:53:15.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:14 smithi123 ceph-mon[31187]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:15.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:14 smithi123 ceph-mon[31187]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:15.188 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:14 smithi037 ceph-mon[22326]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:15.189 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:14 smithi037 ceph-mon[22326]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:15.310 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:16.977 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:16 smithi037 ceph-mon[22326]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:17.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:16 smithi123 ceph-mon[31187]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:18.121 INFO:teuthology.orchestra.run.smithi037.stdout:Scheduled rgw.foorgw update... 2024-04-27T02:53:18.832 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.37/16' 2024-04-27T02:53:19.095 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:19.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:18 smithi123 ceph-mon[31187]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:19.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:19.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:19.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:19.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:18 smithi037 ceph-mon[22326]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:19.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:19.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:19.219 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:20.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:19 smithi123 ceph-mon[31187]: from='client.14564 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:20.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:19 smithi123 ceph-mon[31187]: Saving service rgw.foorgw spec with placement count:2 2024-04-27T02:53:20.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:20.202 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:19 smithi037 ceph-mon[22326]: from='client.14564 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:20.202 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:19 smithi037 ceph-mon[22326]: Saving service rgw.foorgw spec with placement count:2 2024-04-27T02:53:20.202 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:21.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:20 smithi123 ceph-mon[31187]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:21.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:21.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:21.124 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:20 smithi037 ceph-mon[22326]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:21.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:21.125 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:21.979 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:21 smithi037 ceph-mon[22326]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.37/16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:21.980 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:21 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:53:22.102 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:21 smithi123 ceph-mon[31187]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.37/16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:22.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:21 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-04-27T02:53:23.228 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:22 smithi037 ceph-mon[22326]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:23.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-04-27T02:53:23.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:22 smithi037 ceph-mon[22326]: osdmap e44: 8 total, 8 up, 8 in 2024-04-27T02:53:23.229 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:22 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-04-27T02:53:23.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:22 smithi123 ceph-mon[31187]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:23.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-04-27T02:53:23.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:22 smithi123 ceph-mon[31187]: osdmap e44: 8 total, 8 up, 8 in 2024-04-27T02:53:23.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:22 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-04-27T02:53:23.648 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-27T02:53:23.658 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:23.658 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-04-27T02:53:23.685 INFO:teuthology.orchestra.run.smithi037.stderr:+ dnf install -y python3-boto3 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: osdmap e45: 8 total, 8 up, 8 in 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: Saving service nfs.foo spec with placement count:1 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: Saving service ingress.nfs.foo spec with placement count:2 2024-04-27T02:53:23.938 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:23 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:24.227 INFO:teuthology.orchestra.run.smithi037.stdout:Last metadata expiration check: 0:08:33 ago on Sat 27 Apr 2024 02:44:50 AM UTC. 2024-04-27T02:53:24.349 INFO:teuthology.orchestra.run.smithi037.stdout:Dependencies resolved. 2024-04-27T02:53:24.350 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:53:24.350 INFO:teuthology.orchestra.run.smithi037.stdout: Package Arch Version Repository Size 2024-04-27T02:53:24.350 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:53:24.350 INFO:teuthology.orchestra.run.smithi037.stdout:Installing: 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: python3-boto3 noarch 1.22.10-1.el9 epel 161 k 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout:Installing dependencies: 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: python3-botocore noarch 1.25.10-1.el9 epel 4.9 M 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: python3-s3transfer noarch 0.5.2-2.el9 epel 113 k 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction Summary 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout:================================================================================ 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout:Install 5 Packages 2024-04-27T02:53:24.351 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:53:24.352 INFO:teuthology.orchestra.run.smithi037.stdout:Total download size: 5.4 M 2024-04-27T02:53:24.352 INFO:teuthology.orchestra.run.smithi037.stdout:Installed size: 65 M 2024-04-27T02:53:24.352 INFO:teuthology.orchestra.run.smithi037.stdout:Downloading Packages: 2024-04-27T02:53:24.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-04-27T02:53:24.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: osdmap e45: 8 total, 8 up, 8 in 2024-04-27T02:53:24.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: Saving service nfs.foo spec with placement count:1 2024-04-27T02:53:24.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:24.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: Saving service ingress.nfs.foo spec with placement count:2 2024-04-27T02:53:24.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:23 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:24.900 INFO:teuthology.orchestra.run.smithi037.stdout:(1/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 765 kB/s | 50 kB 00:00 2024-04-27T02:53:24.942 INFO:teuthology.orchestra.run.smithi037.stdout:(2/5): python3-boto3-1.22.10-1.el9.noarch.rpm 1.5 MB/s | 161 kB 00:00 2024-04-27T02:53:24.984 INFO:teuthology.orchestra.run.smithi037.stdout:(3/5): python3-s3transfer-0.5.2-2.el9.noarch.rp 2.7 MB/s | 113 kB 00:00 2024-04-27T02:53:25.009 INFO:teuthology.orchestra.run.smithi037.stdout:(4/5): python3-urllib3-1.26.5-5.el9.noarch.rpm 1.2 MB/s | 215 kB 00:00 2024-04-27T02:53:25.126 INFO:teuthology.orchestra.run.smithi037.stdout:(5/5): python3-botocore-1.25.10-1.el9.noarch.rp 22 MB/s | 4.9 MB 00:00 2024-04-27T02:53:25.126 INFO:teuthology.orchestra.run.smithi037.stdout:-------------------------------------------------------------------------------- 2024-04-27T02:53:25.126 INFO:teuthology.orchestra.run.smithi037.stdout:Total 7.0 MB/s | 5.4 MB 00:00 2024-04-27T02:53:25.148 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction check 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: pgmap v155: 33 pgs: 5 creating+peering, 1 active+clean, 27 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: osdmap e46: 8 total, 8 up, 8 in 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: mgrmap e20: smithi037.opdlyg(active, since 4m), standbys: smithi123.vxrhov 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:53:25.156 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.157 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:53:25.157 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:53:25.157 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:25.158 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction check succeeded. 2024-04-27T02:53:25.158 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction test 2024-04-27T02:53:25.248 INFO:teuthology.orchestra.run.smithi037.stdout:Transaction test succeeded. 2024-04-27T02:53:25.249 INFO:teuthology.orchestra.run.smithi037.stdout:Running transaction 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: pgmap v155: 33 pgs: 5 creating+peering, 1 active+clean, 27 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: osdmap e46: 8 total, 8 up, 8 in 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: mgrmap e20: smithi037.opdlyg(active, since 4m), standbys: smithi123.vxrhov 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-27T02:53:25.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:25.543 INFO:teuthology.orchestra.run.smithi037.stdout: Preparing : 1/1 2024-04-27T02:53:25.660 INFO:teuthology.orchestra.run.smithi037.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-04-27T02:53:26.601 INFO:teuthology.orchestra.run.smithi037.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 2/5 2024-04-27T02:53:26.684 INFO:teuthology.orchestra.run.smithi037.stdout: Installing : python3-botocore-1.25.10-1.el9.noarch 3/5 2024-04-27T02:53:26.772 INFO:teuthology.orchestra.run.smithi037.stdout: Installing : python3-s3transfer-0.5.2-2.el9.noarch 4/5 2024-04-27T02:53:26.842 INFO:teuthology.orchestra.run.smithi037.stdout: Installing : python3-boto3-1.22.10-1.el9.noarch 5/5 2024-04-27T02:53:27.273 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:26 smithi037 ceph-mon[22326]: pgmap v157: 33 pgs: 5 creating+peering, 9 active+clean, 19 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:27.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:26 smithi123 ceph-mon[31187]: pgmap v157: 33 pgs: 5 creating+peering, 9 active+clean, 19 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:27.891 INFO:teuthology.orchestra.run.smithi037.stdout: Running scriptlet: python3-boto3-1.22.10-1.el9.noarch 5/5 2024-04-27T02:53:27.891 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 1/5 2024-04-27T02:53:27.892 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-04-27T02:53:27.892 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : python3-boto3-1.22.10-1.el9.noarch 3/5 2024-04-27T02:53:27.892 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : python3-botocore-1.25.10-1.el9.noarch 4/5 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout: Verifying : python3-s3transfer-0.5.2-2.el9.noarch 5/5 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout:Installed: 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout: python3-boto3-1.22.10-1.el9.noarch python3-botocore-1.25.10-1.el9.noarch 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.5.2-2.el9.noarch 2024-04-27T02:53:28.164 INFO:teuthology.orchestra.run.smithi037.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-27T02:53:28.165 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:53:28.165 INFO:teuthology.orchestra.run.smithi037.stdout:Complete! 2024-04-27T02:53:28.382 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-04-27T02:53:28.451 INFO:teuthology.orchestra.run.smithi037.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-04-27T02:53:28.679 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring fsid 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:53:28.744 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:28.866 INFO:teuthology.orchestra.run.smithi037.stderr:Using ceph image with id '87e5280d5ae8' and tag 'b22e2ebdeb24376882b7bda2a7329c8cccc2276a' created on 2024-04-25 17:51:15 +0000 UTC 2024-04-27T02:53:28.866 INFO:teuthology.orchestra.run.smithi037.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:265587011b499c966b9dbaf00ce5756e85851e17df544df961d9e3203c8e39d6 2024-04-27T02:53:29.231 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:28 smithi037 ceph-mon[22326]: pgmap v158: 33 pgs: 5 creating+peering, 28 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:29.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:28 smithi123 ceph-mon[31187]: pgmap v158: 33 pgs: 5 creating+peering, 28 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:30.998 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:30 smithi123 ceph-mon[31187]: pgmap v159: 33 pgs: 33 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:31.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:30 smithi037 ceph-mon[22326]: pgmap v159: 33 pgs: 33 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:32.287 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:32 smithi123 ceph-mon[31187]: osdmap e47: 8 total, 8 up, 8 in 2024-04-27T02:53:32.287 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:32 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/694645932' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-27T02:53:32.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:32 smithi037 ceph-mon[22326]: osdmap e47: 8 total, 8 up, 8 in 2024-04-27T02:53:32.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:32 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/694645932' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-04-27T02:53:33.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:33 smithi123 ceph-mon[31187]: pgmap v161: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:33.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:33 smithi123 ceph-mon[31187]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-27T02:53:33.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:33 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/694645932' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-04-27T02:53:33.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:33 smithi123 ceph-mon[31187]: osdmap e48: 8 total, 8 up, 8 in 2024-04-27T02:53:33.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:33 smithi037 ceph-mon[22326]: pgmap v161: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:53:33.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:33 smithi037 ceph-mon[22326]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-27T02:53:33.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:33 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/694645932' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-04-27T02:53:33.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:33 smithi037 ceph-mon[22326]: osdmap e48: 8 total, 8 up, 8 in 2024-04-27T02:53:34.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:34 smithi123 ceph-mon[31187]: osdmap e49: 8 total, 8 up, 8 in 2024-04-27T02:53:34.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:34 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-27T02:53:34.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:34 smithi037 ceph-mon[22326]: osdmap e49: 8 total, 8 up, 8 in 2024-04-27T02:53:34.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:34 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: pgmap v164: 97 pgs: 12 creating+peering, 46 unknown, 39 active+clean; 577 KiB data, 225 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: osdmap e50: 8 total, 8 up, 8 in 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.dqhsjj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:35.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.dqhsjj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:35.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:35 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: pgmap v164: 97 pgs: 12 creating+peering, 46 unknown, 39 active+clean; 577 KiB data, 225 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: osdmap e50: 8 total, 8 up, 8 in 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.dqhsjj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:35.314 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi123.dqhsjj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:35.315 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:35.315 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:35 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:36.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:36 smithi037 ceph-mon[22326]: Deploying daemon rgw.foorgw.smithi123.dqhsjj on smithi123 2024-04-27T02:53:36.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:36 smithi037 ceph-mon[22326]: osdmap e51: 8 total, 8 up, 8 in 2024-04-27T02:53:36.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:36 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-27T02:53:36.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:36 smithi123 ceph-mon[31187]: Deploying daemon rgw.foorgw.smithi123.dqhsjj on smithi123 2024-04-27T02:53:36.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:36 smithi123 ceph-mon[31187]: osdmap e51: 8 total, 8 up, 8 in 2024-04-27T02:53:36.332 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:36 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-04-27T02:53:37.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:37 smithi123 ceph-mon[31187]: pgmap v167: 129 pgs: 23 creating+peering, 60 unknown, 46 active+clean; 577 KiB data, 225 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:37.352 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:37 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-27T02:53:37.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:37 smithi123 ceph-mon[31187]: osdmap e52: 8 total, 8 up, 8 in 2024-04-27T02:53:37.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:37 smithi037 ceph-mon[22326]: pgmap v167: 129 pgs: 23 creating+peering, 60 unknown, 46 active+clean; 577 KiB data, 225 MiB used, 715 GiB / 715 GiB avail 2024-04-27T02:53:37.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:37 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-04-27T02:53:37.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:37 smithi037 ceph-mon[22326]: osdmap e52: 8 total, 8 up, 8 in 2024-04-27T02:53:38.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: osdmap e53: 8 total, 8 up, 8 in 2024-04-27T02:53:38.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-27T02:53:38.324 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.mjxyhc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.mjxyhc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.325 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:38 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: osdmap e53: 8 total, 8 up, 8 in 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.mjxyhc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi037.mjxyhc", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:38.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:38 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:39.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:39 smithi123 ceph-mon[31187]: pgmap v170: 161 pgs: 1 creating+activating, 22 creating+peering, 48 unknown, 90 active+clean; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.7 KiB/s wr, 3 op/s 2024-04-27T02:53:39.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:39 smithi123 ceph-mon[31187]: Deploying daemon rgw.foorgw.smithi037.mjxyhc on smithi037 2024-04-27T02:53:39.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:39 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-27T02:53:39.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:39 smithi123 ceph-mon[31187]: osdmap e54: 8 total, 8 up, 8 in 2024-04-27T02:53:39.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:39 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-27T02:53:39.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:39 smithi037 ceph-mon[22326]: pgmap v170: 161 pgs: 1 creating+activating, 22 creating+peering, 48 unknown, 90 active+clean; 578 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.7 KiB/s wr, 3 op/s 2024-04-27T02:53:39.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:39 smithi037 ceph-mon[22326]: Deploying daemon rgw.foorgw.smithi037.mjxyhc on smithi037 2024-04-27T02:53:39.491 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:39 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-04-27T02:53:39.492 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:39 smithi037 ceph-mon[22326]: osdmap e54: 8 total, 8 up, 8 in 2024-04-27T02:53:39.492 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:39 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-27T02:53:40.013 INFO:teuthology.run_tasks:Running task python... 2024-04-27T02:53:40.024 INFO:tasks.python:Running python on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:40.024 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-04-27T02:53:40.025 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-04-27T02:53:40.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:40 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-27T02:53:40.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:40 smithi037 ceph-mon[22326]: osdmap e55: 8 total, 8 up, 8 in 2024-04-27T02:53:40.269 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:40 smithi037 ceph-mon[22326]: pgmap v173: 161 pgs: 1 creating+activating, 15 creating+peering, 22 unknown, 123 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 71 KiB/s rd, 4.7 KiB/s wr, 161 op/s 2024-04-27T02:53:40.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:40 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/2914919377' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-27T02:53:40.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:40 smithi123 ceph-mon[31187]: osdmap e55: 8 total, 8 up, 8 in 2024-04-27T02:53:40.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:40 smithi123 ceph-mon[31187]: pgmap v173: 161 pgs: 1 creating+activating, 15 creating+peering, 22 unknown, 123 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 71 KiB/s rd, 4.7 KiB/s wr, 161 op/s 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Cluster is now healthy 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Saving service rgw.foorgw spec with placement count:2 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Creating key for client.nfs.foo.0.0.smithi037.mgjozk 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Rados config object exists: conf-nfs.foo 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Creating key for client.nfs.foo.0.0.smithi037.mgjozk-rgw 2024-04-27T02:53:41.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:41.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:41.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Bind address in nfs.foo.0.0.smithi037.mgjozk's ganesha conf is defaulting to empty 2024-04-27T02:53:41.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:41.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:41 smithi123 ceph-mon[31187]: Deploying daemon nfs.foo.0.0.smithi037.mgjozk on smithi037 2024-04-27T02:53:41.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-27T02:53:41.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Cluster is now healthy 2024-04-27T02:53:41.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Saving service rgw.foorgw spec with placement count:2 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Creating key for client.nfs.foo.0.0.smithi037.mgjozk 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-04-27T02:53:41.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Rados config object exists: conf-nfs.foo 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Creating key for client.nfs.foo.0.0.smithi037.mgjozk-rgw 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi037.mgjozk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Bind address in nfs.foo.0.0.smithi037.mgjozk's ganesha conf is defaulting to empty 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:53:41.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:41 smithi037 ceph-mon[22326]: Deploying daemon nfs.foo.0.0.smithi037.mgjozk on smithi037 2024-04-27T02:53:42.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:42 smithi123 ceph-mon[31187]: pgmap v174: 161 pgs: 4 creating+peering, 12 unknown, 145 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 161 KiB/s rd, 5.8 KiB/s wr, 325 op/s 2024-04-27T02:53:42.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:42 smithi037 ceph-mon[22326]: pgmap v174: 161 pgs: 4 creating+peering, 12 unknown, 145 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 161 KiB/s rd, 5.8 KiB/s wr, 325 op/s 2024-04-27T02:53:43.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:43 smithi037 ceph-mon[22326]: osdmap e56: 8 total, 8 up, 8 in 2024-04-27T02:53:43.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:43 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-04-27T02:53:43.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:43 smithi123 ceph-mon[31187]: osdmap e56: 8 total, 8 up, 8 in 2024-04-27T02:53:43.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:43 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: osdmap e57: 8 total, 8 up, 8 in 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: pgmap v177: 193 pgs: 4 creating+peering, 28 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 237 KiB/s rd, 6.6 KiB/s wr, 459 op/s 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: Filtered out host smithi123: Host has no interface available for VIP: 10.0.31.37/16 2024-04-27T02:53:44.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:44 smithi037 ceph-mon[22326]: Deploying daemon haproxy.nfs.foo.smithi037.mddllj on smithi037 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: osdmap e57: 8 total, 8 up, 8 in 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: pgmap v177: 193 pgs: 4 creating+peering, 28 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 237 KiB/s rd, 6.6 KiB/s wr, 459 op/s 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.604 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: Filtered out host smithi123: Host has no interface available for VIP: 10.0.31.37/16 2024-04-27T02:53:44.604 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:44.604 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:44 smithi123 ceph-mon[31187]: Deploying daemon haproxy.nfs.foo.smithi037.mddllj on smithi037 2024-04-27T02:53:45.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:45 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-27T02:53:45.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:45 smithi037 ceph-mon[22326]: osdmap e58: 8 total, 8 up, 8 in 2024-04-27T02:53:45.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:45 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:45.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:45 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-04-27T02:53:45.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:45 smithi123 ceph-mon[31187]: osdmap e58: 8 total, 8 up, 8 in 2024-04-27T02:53:45.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:45 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:46.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:46 smithi037 ceph-mon[22326]: osdmap e59: 8 total, 8 up, 8 in 2024-04-27T02:53:46.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:46 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-04-27T02:53:46.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:46 smithi037 ceph-mon[22326]: pgmap v180: 225 pgs: 4 creating+peering, 51 unknown, 170 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 186 KiB/s rd, 2.7 KiB/s wr, 322 op/s 2024-04-27T02:53:46.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:46 smithi123 ceph-mon[31187]: osdmap e59: 8 total, 8 up, 8 in 2024-04-27T02:53:46.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:46 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-04-27T02:53:46.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:46 smithi123 ceph-mon[31187]: pgmap v180: 225 pgs: 4 creating+peering, 51 unknown, 170 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 186 KiB/s rd, 2.7 KiB/s wr, 322 op/s 2024-04-27T02:53:47.175 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:53:47.185 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:53:47.185 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-04-27T02:53:47.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:47 smithi037 ceph-mon[22326]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-27T02:53:47.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:47 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-04-27T02:53:47.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:47 smithi037 ceph-mon[22326]: osdmap e60: 8 total, 8 up, 8 in 2024-04-27T02:53:47.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:47 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-04-27T02:53:47.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:47 smithi123 ceph-mon[31187]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-04-27T02:53:47.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:47 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-04-27T02:53:47.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:47 smithi123 ceph-mon[31187]: osdmap e60: 8 total, 8 up, 8 in 2024-04-27T02:53:47.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:47 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-04-27T02:53:48.504 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:48 smithi123 ceph-mon[31187]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-04-27T02:53:48.504 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:48 smithi123 ceph-mon[31187]: osdmap e61: 8 total, 8 up, 8 in 2024-04-27T02:53:48.505 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:48 smithi123 ceph-mon[31187]: pgmap v183: 225 pgs: 15 creating+peering, 13 unknown, 197 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 1023 B/s wr, 165 op/s 2024-04-27T02:53:48.523 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:48 smithi037 ceph-mon[22326]: from='client.? 172.21.15.37:0/3808413214' entity='client.rgw.foorgw.smithi037.mjxyhc' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-04-27T02:53:48.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:48 smithi037 ceph-mon[22326]: osdmap e61: 8 total, 8 up, 8 in 2024-04-27T02:53:48.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:48 smithi037 ceph-mon[22326]: pgmap v183: 225 pgs: 15 creating+peering, 13 unknown, 197 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 1023 B/s wr, 165 op/s 2024-04-27T02:53:48.571 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:49.469 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:49 smithi037 ceph-mon[22326]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-27T02:53:49.469 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:49 smithi037 ceph-mon[22326]: Cluster is now healthy 2024-04-27T02:53:49.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:49 smithi123 ceph-mon[31187]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-04-27T02:53:49.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:49 smithi123 ceph-mon[31187]: Cluster is now healthy 2024-04-27T02:53:50.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:50 smithi037 ceph-mon[22326]: pgmap v184: 225 pgs: 11 creating+peering, 214 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 16 KiB/s rd, 1.8 KiB/s wr, 30 op/s 2024-04-27T02:53:50.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:50 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:50.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:50 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:50.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:50 smithi123 ceph-mon[31187]: pgmap v184: 225 pgs: 11 creating+peering, 214 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 16 KiB/s rd, 1.8 KiB/s wr, 30 op/s 2024-04-27T02:53:50.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:50 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:50.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:50 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:53:52.306 INFO:teuthology.orchestra.run.smithi037.stdout:{ 2024-04-27T02:53:52.306 INFO:teuthology.orchestra.run.smithi037.stdout: "bind": "/foouser", 2024-04-27T02:53:52.306 INFO:teuthology.orchestra.run.smithi037.stdout: "cluster": "foo", 2024-04-27T02:53:52.306 INFO:teuthology.orchestra.run.smithi037.stdout: "mode": "RW", 2024-04-27T02:53:52.306 INFO:teuthology.orchestra.run.smithi037.stdout: "path": "/", 2024-04-27T02:53:52.307 INFO:teuthology.orchestra.run.smithi037.stdout: "squash": "none" 2024-04-27T02:53:52.307 INFO:teuthology.orchestra.run.smithi037.stdout:} 2024-04-27T02:53:52.484 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:52 smithi037 ceph-mon[22326]: pgmap v185: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 1.5 KiB/s wr, 25 op/s 2024-04-27T02:53:52.603 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:52 smithi123 ceph-mon[31187]: pgmap v185: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 1.5 KiB/s wr, 25 op/s 2024-04-27T02:53:53.099 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-04-27T02:53:53.109 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-04-27T02:53:53.109 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:53:53.379 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:53:53.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:53.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.774 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.775 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:53:53.775 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:53 smithi037 ceph-mon[22326]: Deploying daemon keepalived.nfs.foo.smithi037.upnhnl on smithi037 2024-04-27T02:53:53.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:53:53.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.854 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.854 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:53:53.854 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:53:53.854 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:53 smithi123 ceph-mon[31187]: Deploying daemon keepalived.nfs.foo.smithi037.upnhnl on smithi037 2024-04-27T02:53:54.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:54 smithi123 ceph-mon[31187]: pgmap v186: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 1.5 KiB/s wr, 22 op/s 2024-04-27T02:53:55.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:54 smithi037 ceph-mon[22326]: pgmap v186: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 1.5 KiB/s wr, 22 op/s 2024-04-27T02:53:56.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:56 smithi123 ceph-mon[31187]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-04-27T02:53:57.001 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:53:57.001 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:53:18.090368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:53:11.823493Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:53:11.823593Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:53:18.090526Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:52.571432Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:53:11.823765Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:53:11.823866Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:53:43.873211Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:53:11.823683Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:53:11.823944Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:53:18.090684Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "ports": [8800], "running": 0, "size": 2}}] 2024-04-27T02:53:57.001 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:56 smithi037 ceph-mon[22326]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-04-27T02:53:57.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:57 smithi123 ceph-mon[31187]: from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:53:58.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:57 smithi037 ceph-mon[22326]: from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:53:58.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:53:58 smithi123 ceph-mon[31187]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 1.2 KiB/s wr, 16 op/s 2024-04-27T02:53:58.998 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:53:58 smithi037 ceph-mon[22326]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 1.2 KiB/s wr, 16 op/s 2024-04-27T02:53:59.033 INFO:tasks.cephadm:nfs.foo has 0/1 2024-04-27T02:54:00.034 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:00.487 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:00.643 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:00 smithi037 ceph-mon[22326]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 1023 B/s wr, 13 op/s 2024-04-27T02:54:00.643 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:00 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:00.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:00 smithi123 ceph-mon[31187]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 1023 B/s wr, 13 op/s 2024-04-27T02:54:00.853 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:00 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:02.690 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:02 smithi037 ceph-mon[22326]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 426 B/s wr, 11 op/s 2024-04-27T02:54:02.753 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:02.753 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:53:18.090368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:53:11.823493Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:53:11.823593Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:53:18.090526Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:52.571432Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:53:11.823765Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:53:11.823866Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:53:43.873211Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:53:11.823683Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:53:11.823944Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:53:18.090684Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "ports": [8800], "running": 0, "size": 2}}] 2024-04-27T02:54:03.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:02 smithi123 ceph-mon[31187]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 426 B/s wr, 11 op/s 2024-04-27T02:54:03.427 INFO:tasks.cephadm:nfs.foo has 0/1 2024-04-27T02:54:04.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:04.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:03 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:04.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:03 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:54:04.428 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:05.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:04 smithi037 ceph-mon[22326]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 426 B/s wr, 11 op/s 2024-04-27T02:54:05.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:05.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:05.077 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:05.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:04 smithi123 ceph-mon[31187]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 426 B/s wr, 11 op/s 2024-04-27T02:54:05.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:05.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.429 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:06 smithi123 ceph-mon[31187]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.1 KiB/s rd, 170 B/s wr, 10 op/s 2024-04-27T02:54:06.429 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.429 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.429 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.429 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:06 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:06 smithi037 ceph-mon[22326]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.1 KiB/s rd, 170 B/s wr, 10 op/s 2024-04-27T02:54:06.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:06.519 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:06 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:07.640 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:07.640 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:53:18.090368Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:53:18.089888Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:53:18.090050Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:53:18.090526Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:02.774733Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:53:18.089723Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:53:18.089542Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:53:43.873211Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:53:18.090211Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:53:18.090850Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:53:18.090684Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 1, "size": 2}}] 2024-04-27T02:54:08.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:08 smithi123 ceph-mon[31187]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 170 B/s wr, 7 op/s 2024-04-27T02:54:08.518 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:08 smithi123 ceph-mon[31187]: from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:08.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:08 smithi037 ceph-mon[22326]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 170 B/s wr, 7 op/s 2024-04-27T02:54:08.524 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:08 smithi037 ceph-mon[22326]: from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:08.590 INFO:tasks.cephadm:nfs.foo has 0/1 2024-04-27T02:54:09.591 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:10.843 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:11.135 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:10 smithi037 ceph-mon[22326]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-04-27T02:54:11.136 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:11.136 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:10 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:11.143 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:10 smithi123 ceph-mon[31187]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-04-27T02:54:11.143 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:11.143 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:10 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.007 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:54:13.007 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.007 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.007 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:54:13.007 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: Checking dashboard <-> RGW credentials 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:54:13.008 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:12 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:54:13.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: Checking dashboard <-> RGW credentials 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:54:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:12 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:13.479 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:13.479 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:02.774733Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "last_refresh": "2024-04-27T02:54:11.888854Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:14.094 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:13 smithi037 ceph-mon[22326]: Deploying daemon haproxy.nfs.foo.smithi123.dxfbuo on smithi123 2024-04-27T02:54:14.122 INFO:tasks.cephadm:nfs.foo has 1/1 2024-04-27T02:54:14.122 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-04-27T02:54:14.132 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-04-27T02:54:14.132 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:14.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:13 smithi123 ceph-mon[31187]: Deploying daemon haproxy.nfs.foo.smithi123.dxfbuo on smithi123 2024-04-27T02:54:14.396 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:15.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:14 smithi037 ceph-mon[22326]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:54:15.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:14 smithi037 ceph-mon[22326]: from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:15.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:14 smithi123 ceph-mon[31187]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:54:15.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:14 smithi123 ceph-mon[31187]: from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:16.242 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:16.243 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:02.774733Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "last_refresh": "2024-04-27T02:54:11.888854Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:16.887 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-04-27T02:54:17.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:16 smithi037 ceph-mon[22326]: pgmap v197: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 255 B/s wr, 0 op/s 2024-04-27T02:54:17.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:16 smithi123 ceph-mon[31187]: pgmap v197: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 255 B/s wr, 0 op/s 2024-04-27T02:54:17.888 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:18.159 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:18.254 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:17 smithi123 ceph-mon[31187]: from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:18.274 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:17 smithi037 ceph-mon[22326]: from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:19.240 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:18 smithi037 ceph-mon[22326]: pgmap v198: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-04-27T02:54:19.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:18 smithi123 ceph-mon[31187]: pgmap v198: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-04-27T02:54:19.950 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:19.950 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:02.774733Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "last_refresh": "2024-04-27T02:54:11.888854Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:20.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.15", "id": [4, 6]}]: dispatch 2024-04-27T02:54:20.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]: dispatch 2024-04-27T02:54:20.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:19 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:20.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.15", "id": [4, 6]}]: dispatch 2024-04-27T02:54:20.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]: dispatch 2024-04-27T02:54:20.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:19 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:20.629 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-04-27T02:54:21.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:20 smithi123 ceph-mon[31187]: pgmap v199: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-04-27T02:54:21.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.15", "id": [4, 6]}]': finished 2024-04-27T02:54:21.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]': finished 2024-04-27T02:54:21.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:20 smithi123 ceph-mon[31187]: osdmap e62: 8 total, 8 up, 8 in 2024-04-27T02:54:21.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:20 smithi123 ceph-mon[31187]: from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:21.278 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:20 smithi037 ceph-mon[22326]: pgmap v199: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-04-27T02:54:21.278 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.15", "id": [4, 6]}]': finished 2024-04-27T02:54:21.278 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]': finished 2024-04-27T02:54:21.278 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:20 smithi037 ceph-mon[22326]: osdmap e62: 8 total, 8 up, 8 in 2024-04-27T02:54:21.278 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:20 smithi037 ceph-mon[22326]: from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:21.630 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:21.899 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:22.241 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:21 smithi037 ceph-mon[22326]: osdmap e63: 8 total, 8 up, 8 in 2024-04-27T02:54:22.246 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:21 smithi123 ceph-mon[31187]: osdmap e63: 8 total, 8 up, 8 in 2024-04-27T02:54:23.094 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:22 smithi123 ceph-mon[31187]: pgmap v202: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 255 B/s wr, 3 op/s 2024-04-27T02:54:23.253 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:22 smithi037 ceph-mon[22326]: pgmap v202: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 255 B/s wr, 3 op/s 2024-04-27T02:54:23.684 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:23.684 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:02.774733Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:24.346 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: pgmap v203: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 127 B/s wr, 3 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: 10.0.31.37 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-04-27T02:54:25.000 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:54:25.001 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:24 smithi037 ceph-mon[22326]: Deploying daemon keepalived.nfs.foo.smithi123.tcmgnd on smithi123 2024-04-27T02:54:25.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: pgmap v203: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 127 B/s wr, 3 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: 10.0.31.37 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:54:25.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:24 smithi123 ceph-mon[31187]: Deploying daemon keepalived.nfs.foo.smithi123.tcmgnd on smithi123 2024-04-27T02:54:25.347 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:25.621 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:26.998 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:26 smithi037 ceph-mon[22326]: pgmap v204: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:27.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:26 smithi123 ceph-mon[31187]: pgmap v204: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:27.424 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:27.424 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:23.697861Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:28.109 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-04-27T02:54:29.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:28 smithi037 ceph-mon[22326]: pgmap v205: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:29.024 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:28 smithi037 ceph-mon[22326]: from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:29.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:28 smithi123 ceph-mon[31187]: pgmap v205: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:29.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:28 smithi123 ceph-mon[31187]: from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:29.110 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:29.376 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:30.949 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:30 smithi123 ceph-mon[31187]: pgmap v206: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:31.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:30 smithi037 ceph-mon[22326]: pgmap v206: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:32.954 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: pgmap v207: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 99 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:32.954 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:32.954 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:32.955 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:32.955 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:32.955 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:32 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: pgmap v207: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 99 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:33.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:32 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:54:33.424 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:33.424 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:05.222225Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:05.222335Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:31.942346Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:05.222494Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:05.222570Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:05.222417Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:05.222643Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:05.222957Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:34.052 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-04-27T02:54:35.053 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- ceph orch ls -f json 2024-04-27T02:54:35.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:34 smithi037 ceph-mon[22326]: pgmap v208: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:35.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:34 smithi037 ceph-mon[22326]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:35.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:35.057 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:34 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:35.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:34 smithi123 ceph-mon[31187]: pgmap v208: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-04-27T02:54:35.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:34 smithi123 ceph-mon[31187]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:35.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:35.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:34 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:35.492 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:37.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:36 smithi037 ceph-mon[22326]: pgmap v209: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:37.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:36 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:37.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:36 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:37.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:36 smithi123 ceph-mon[31187]: pgmap v209: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:37.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:36 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:37.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:36 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:39.018 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:38 smithi037 ceph-mon[22326]: pgmap v210: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:39.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:38 smithi123 ceph-mon[31187]: pgmap v210: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:39.374 INFO:teuthology.orchestra.run.smithi037.stdout: 2024-04-27T02:54:39.375 INFO:teuthology.orchestra.run.smithi037.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-04-27T02:47:55.901323Z", "last_refresh": "2024-04-27T02:54:11.888002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:31.245201Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-04-27T02:47:50.505440Z", "last_refresh": "2024-04-27T02:54:11.887730Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:34.833369Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-04-27T02:47:48.939323Z", "last_refresh": "2024-04-27T02:54:11.887831Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-04-27T02:47:53.351931Z", "last_refresh": "2024-04-27T02:54:11.888087Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:54:31.942346Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.37/16"}, "status": {"created": "2024-04-27T02:53:22.887111Z", "last_refresh": "2024-04-27T02:54:11.888854Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.37/16"}}, {"events": ["2024-04-27T02:49:44.207091Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-04-27T02:47:47.663198Z", "last_refresh": "2024-04-27T02:54:11.887640Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:49:53.756103Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi037:172.21.15.37=smithi037", "smithi123:172.21.15.123=smithi123"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-04-27T02:48:42.072175Z", "last_refresh": "2024-04-27T02:54:11.887525Z", "running": 2, "size": 2}}, {"events": ["2024-04-27T02:54:12.301590Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-04-27T02:53:22.882279Z", "last_refresh": "2024-04-27T02:54:11.888756Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:49:40.116484Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-04-27T02:47:54.676592Z", "last_refresh": "2024-04-27T02:54:11.887919Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-04-27T02:50:01.019499Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-04-27T02:50:01.015972Z", "last_refresh": "2024-04-27T02:54:11.888316Z", "running": 8, "size": 8}}, {"events": ["2024-04-27T02:49:53.760688Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-04-27T02:47:52.036809Z", "last_refresh": "2024-04-27T02:54:11.888217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-04-27T02:53:40.768158Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-04-27T02:53:40.759264Z", "last_refresh": "2024-04-27T02:54:11.888669Z", "ports": [8800], "running": 2, "size": 2}}] 2024-04-27T02:54:40.397 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-04-27T02:54:40.398 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-27T02:54:40.667 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:54:40.668 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-04-27T02:54:40.702 INFO:teuthology.orchestra.run.smithi037.stderr:+ mkdir /mnt/foo 2024-04-27T02:54:40.715 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-04-27T02:54:40.786 INFO:teuthology.orchestra.run.smithi037.stderr:+ sleep 5 2024-04-27T02:54:40.962 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:40 smithi037 ceph-mon[22326]: pgmap v211: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-04-27T02:54:40.962 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:40 smithi037 ceph-mon[22326]: from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:41.145 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:40 smithi123 ceph-mon[31187]: pgmap v211: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-04-27T02:54:41.145 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:40 smithi123 ceph-mon[31187]: from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: pgmap v212: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:42 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: pgmap v212: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:43.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:42 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:54:44.147 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:43 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:44.147 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:43 smithi037 ceph-mon[22326]: Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-27T02:54:44.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:43 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:44.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:43 smithi123 ceph-mon[31187]: Reconfiguring prometheus.smithi037 (dependencies changed)... 2024-04-27T02:54:45.192 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:44 smithi037 ceph-mon[22326]: pgmap v213: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:45.192 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:44 smithi037 ceph-mon[22326]: Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-27T02:54:45.353 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:44 smithi123 ceph-mon[31187]: pgmap v213: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:45.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:44 smithi123 ceph-mon[31187]: Reconfiguring daemon prometheus.smithi037 on smithi037 2024-04-27T02:54:45.789 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.37:/foouser /mnt/foo' 2024-04-27T02:54:45.858 INFO:teuthology.orchestra.run.smithi037.stderr:+ mount -t nfs 10.0.31.37:/foouser /mnt/foo 2024-04-27T02:54:46.379 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2024-04-27T02:54:46.446 INFO:teuthology.orchestra.run.smithi037.stderr:+ test -d /mnt/foo/foobucket 2024-04-27T02:54:46.453 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-04-27T02:54:46.517 INFO:teuthology.orchestra.run.smithi037.stderr:+ find /mnt/foo -ls 2024-04-27T02:54:46.522 INFO:teuthology.orchestra.run.smithi037.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Apr 27 02:53 /mnt/foo 2024-04-27T02:54:46.522 INFO:teuthology.orchestra.run.smithi037.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Apr 27 02:53 /mnt/foo/foobucket 2024-04-27T02:54:46.522 INFO:teuthology.orchestra.run.smithi037.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Apr 27 02:53 /mnt/foo/foobucket/myobject 2024-04-27T02:54:46.524 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2024-04-27T02:54:46.587 INFO:teuthology.orchestra.run.smithi037.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2024-04-27T02:54:46.591 INFO:teuthology.orchestra.run.smithi037.stdout:thebody 2024-04-27T02:54:46.592 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2024-04-27T02:54:46.656 INFO:teuthology.orchestra.run.smithi037.stderr:+ echo test 2024-04-27T02:54:46.671 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-04-27T02:54:46.735 INFO:teuthology.orchestra.run.smithi037.stderr:+ sync 2024-04-27T02:54:47.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:46 smithi037 ceph-mon[22326]: pgmap v214: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:47.062 INFO:teuthology.run_tasks:Running task python... 2024-04-27T02:54:47.073 INFO:tasks.python:Running python on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:54:47.073 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-04-27T02:54:47.073 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-04-27T02:54:47.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:46 smithi123 ceph-mon[31187]: pgmap v214: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-04-27T02:54:47.368 INFO:teuthology.orchestra.run.smithi037.stdout:b'test\n' 2024-04-27T02:54:47.416 INFO:teuthology.run_tasks:Running task vip.exec... 2024-04-27T02:54:47.425 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:54:47.426 DEBUG:teuthology.orchestra.run.smithi037:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-04-27T02:54:47.453 INFO:teuthology.orchestra.run.smithi037.stderr:+ umount /mnt/foo 2024-04-27T02:54:47.470 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:54:47.482 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:54:47.483 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph nfs export rm foo /foouser' 2024-04-27T02:54:47.775 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:49.141 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:48 smithi037 ceph-mon[22326]: pgmap v215: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 2 op/s 2024-04-27T02:54:49.155 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:48 smithi123 ceph-mon[31187]: pgmap v215: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 2 op/s 2024-04-27T02:54:50.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:49 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:50.298 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:49 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:54:50.444 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-04-27T02:54:51.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:51 smithi037 ceph-mon[22326]: pgmap v216: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.4 KiB/s rd, 85 B/s wr, 6 op/s 2024-04-27T02:54:51.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:51 smithi037 ceph-mon[22326]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:54:51.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:51.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:51 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:51.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:51 smithi123 ceph-mon[31187]: pgmap v216: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.4 KiB/s rd, 85 B/s wr, 6 op/s 2024-04-27T02:54:51.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:51 smithi123 ceph-mon[31187]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:54:51.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:51.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:51 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:51.696 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:52.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:52 smithi037 ceph-mon[22326]: Reconfiguring keepalived.nfs.foo.smithi037.upnhnl (dependencies changed)... 2024-04-27T02:54:52.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:52 smithi037 ceph-mon[22326]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:54:52.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:52 smithi037 ceph-mon[22326]: 10.0.31.37 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-04-27T02:54:52.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:52 smithi037 ceph-mon[22326]: Reconfiguring daemon keepalived.nfs.foo.smithi037.upnhnl on smithi037 2024-04-27T02:54:52.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:52 smithi123 ceph-mon[31187]: Reconfiguring keepalived.nfs.foo.smithi037.upnhnl (dependencies changed)... 2024-04-27T02:54:52.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:52 smithi123 ceph-mon[31187]: 10.0.31.37 is in 10.0.0.0/16 on smithi037 interface ens1f0 2024-04-27T02:54:52.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:52 smithi123 ceph-mon[31187]: 10.0.31.37 is in 10.0.0.0/16 on smithi123 interface enp3s0f1 2024-04-27T02:54:52.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:52 smithi123 ceph-mon[31187]: Reconfiguring daemon keepalived.nfs.foo.smithi037.upnhnl on smithi037 2024-04-27T02:54:53.237 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:53 smithi037 ceph-mon[22326]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-04-27T02:54:53.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:53 smithi123 ceph-mon[31187]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-04-27T02:54:54.569 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-27T02:54:54.579 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:54:54.580 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-04-27T02:54:54.896 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: Remove service ingress.nfs.foo 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: Remove service nfs.foo 2024-04-27T02:54:55.019 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:54 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: Remove service ingress.nfs.foo 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: Remove service nfs.foo 2024-04-27T02:54:55.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:54 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:56.676 INFO:teuthology.orchestra.run.smithi037.stdout:167 167 2024-04-27T02:54:57.013 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:56 smithi037 ceph-mon[22326]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-27T02:54:57.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:56 smithi123 ceph-mon[31187]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 12 op/s 2024-04-27T02:54:57.437 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch status' 2024-04-27T02:54:58.014 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:54:59.108 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:59 smithi037 ceph-mon[22326]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 13 op/s 2024-04-27T02:54:59.108 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:59.108 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:59 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:59.108 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:59 smithi037 ceph-mon[22326]: Removing orphan daemon haproxy.nfs.foo.smithi123.dxfbuo... 2024-04-27T02:54:59.108 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:54:59 smithi037 ceph-mon[22326]: Removing daemon haproxy.nfs.foo.smithi123.dxfbuo from smithi123 -- ports [2049, 9049] 2024-04-27T02:54:59.259 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:59 smithi123 ceph-mon[31187]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 511 B/s wr, 13 op/s 2024-04-27T02:54:59.260 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:59.260 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:59 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:54:59.260 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:59 smithi123 ceph-mon[31187]: Removing orphan daemon haproxy.nfs.foo.smithi123.dxfbuo... 2024-04-27T02:54:59.260 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:54:59 smithi123 ceph-mon[31187]: Removing daemon haproxy.nfs.foo.smithi123.dxfbuo from smithi123 -- ports [2049, 9049] 2024-04-27T02:54:59.845 INFO:teuthology.orchestra.run.smithi037.stdout:Backend: cephadm 2024-04-27T02:54:59.845 INFO:teuthology.orchestra.run.smithi037.stdout:Available: Yes 2024-04-27T02:54:59.845 INFO:teuthology.orchestra.run.smithi037.stdout:Paused: No 2024-04-27T02:55:00.099 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:00 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi123.dxfbuo"}]: dispatch 2024-04-27T02:55:00.103 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:00 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi123.dxfbuo"}]: dispatch 2024-04-27T02:55:00.647 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch ps' 2024-04-27T02:55:00.905 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:55:01.266 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:01 smithi037 ceph-mon[22326]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-04-27T02:55:01.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:01 smithi037 ceph-mon[22326]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:01.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:01 smithi037 ceph-mon[22326]: Removing key for client.ingress.nfs.foo.smithi123.dxfbuo 2024-04-27T02:55:01.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:01 smithi037 ceph-mon[22326]: Removing orphan daemon keepalived.nfs.foo.smithi123.tcmgnd... 2024-04-27T02:55:01.267 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:01 smithi037 ceph-mon[22326]: Removing daemon keepalived.nfs.foo.smithi123.tcmgnd from smithi123 -- ports [] 2024-04-27T02:55:01.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:01 smithi123 ceph-mon[31187]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-04-27T02:55:01.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:01 smithi123 ceph-mon[31187]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:01.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:01 smithi123 ceph-mon[31187]: Removing key for client.ingress.nfs.foo.smithi123.dxfbuo 2024-04-27T02:55:01.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:01 smithi123 ceph-mon[31187]: Removing orphan daemon keepalived.nfs.foo.smithi123.tcmgnd... 2024-04-27T02:55:01.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:01 smithi123 ceph-mon[31187]: Removing daemon keepalived.nfs.foo.smithi123.tcmgnd from smithi123 -- ports [] 2024-04-27T02:55:02.711 INFO:teuthology.orchestra.run.smithi037.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager.smithi037 smithi037 *:9093,9094 running (4m) 20s ago 6m 25.0M - 0.25.0 c8568f914cd2 54eaa1ee6667 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi037 smithi037 running (6m) 20s ago 6m 8090k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 e84b215a6d91 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter.smithi123 smithi123 running (5m) 26s ago 5m 4916k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 5bb64fd80e85 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi037 smithi037 running (6m) 20s ago 6m 6660k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 f4d3291acd6d 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:crash.smithi123 smithi123 running (5m) 26s ago 5m 6656k - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 533c2811a899 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:grafana.smithi037 smithi037 *:3000 running (4m) 20s ago 6m 78.0M - 9.4.12 2bacad6d85d8 2dce062532b0 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:haproxy.nfs.foo.smithi037.mddllj smithi037 *:2049,9049 running (70s) 20s ago 70s 4386k - 2.3.17-d1c9119 e85424b0d443 d6cd36bf0c79 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:keepalived.nfs.foo.smithi037.upnhnl smithi037 starting - - - - 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:keepalived.nfs.foo.smithi123.tcmgnd smithi123 running (31s) 26s ago 30s 1761k - 2.2.4 4a3a1ff181d9 2e2ad5dfc202 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi037.opdlyg smithi037 *:9283,8765,8443 running (7m) 20s ago 7m 516M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 9df5d588b4f6 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:mgr.smithi123.vxrhov smithi123 *:8443,9283,8765 running (5m) 26s ago 5m 453M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 12ff8c1092a6 2024-04-27T02:55:02.712 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi037 smithi037 running (7m) 20s ago 7m 49.1M 2048M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 585de42715eb 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:mon.smithi123 smithi123 running (5m) 26s ago 5m 36.4M 2048M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 c8307bb66d1f 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:nfs.foo.0.0.smithi037.mgjozk smithi037 *:12049 running (79s) 20s ago 78s 100M - 5.7 87e5280d5ae8 0cf02d077d10 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi037 smithi037 *:9100 running (6m) 20s ago 6m 13.8M - 1.5.0 0da6a335fe13 e09b9e6349c6 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter.smithi123 smithi123 *:9100 running (5m) 26s ago 5m 15.2M - 1.5.0 0da6a335fe13 522715799d40 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.0 smithi123 running (3m) 26s ago 3m 60.9M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 59b8f6164d44 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.1 smithi037 running (3m) 20s ago 3m 57.4M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 6fc581ddc7bb 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.2 smithi123 running (3m) 26s ago 3m 51.3M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 f40f0163a3e7 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.3 smithi037 running (3m) 20s ago 3m 56.6M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 60273beff7bf 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.4 smithi123 running (3m) 26s ago 3m 54.0M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 10aa25405bf2 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.5 smithi037 running (3m) 20s ago 3m 53.9M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 5b8613419b07 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.6 smithi123 running (3m) 26s ago 3m 46.8M 3728M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 458beed1c627 2024-04-27T02:55:02.713 INFO:teuthology.orchestra.run.smithi037.stdout:osd.7 smithi037 running (3m) 20s ago 3m 47.7M 2961M 19.0.0-2447-gb22e2ebd 87e5280d5ae8 d1398778a697 2024-04-27T02:55:02.714 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus.smithi037 smithi037 *:9095 starting - - - - 2024-04-27T02:55:02.714 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw.smithi037.mjxyhc smithi037 *:8800 running (82s) 20s ago 82s 78.3M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 1a24199cbec7 2024-04-27T02:55:02.714 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw.smithi123.dqhsjj smithi123 *:8800 running (85s) 26s ago 85s 77.0M - 19.0.0-2447-gb22e2ebd 87e5280d5ae8 7ceb77f318df 2024-04-27T02:55:03.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:03 smithi123 ceph-mon[31187]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 426 B/s wr, 7 op/s 2024-04-27T02:55:03.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:03 smithi037 ceph-mon[22326]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 426 B/s wr, 7 op/s 2024-04-27T02:55:03.751 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch ls' 2024-04-27T02:55:04.022 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:55:04.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:04 smithi037 ceph-mon[22326]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:04.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi123.tcmgnd"}]: dispatch 2024-04-27T02:55:04.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:55:04.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:04 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:55:04.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:04 smithi123 ceph-mon[31187]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:04.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi123.tcmgnd"}]: dispatch 2024-04-27T02:55:04.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:55:04.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:04 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-27T02:55:05.157 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:05 smithi037 ceph-mon[22326]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 0 B/s wr, 2 op/s 2024-04-27T02:55:05.157 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:05 smithi037 ceph-mon[22326]: Removing key for client.ingress.nfs.foo.smithi123.tcmgnd 2024-04-27T02:55:05.157 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:05 smithi037 ceph-mon[22326]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:55:05.157 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:05 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:55:05.278 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:05 smithi123 ceph-mon[31187]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 0 B/s wr, 2 op/s 2024-04-27T02:55:05.279 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:05 smithi123 ceph-mon[31187]: Removing key for client.ingress.nfs.foo.smithi123.tcmgnd 2024-04-27T02:55:05.279 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:05 smithi123 ceph-mon[31187]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-27T02:55:05.279 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:05 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:55:05.985 INFO:teuthology.orchestra.run.smithi037.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-04-27T02:55:05.985 INFO:teuthology.orchestra.run.smithi037.stdout:alertmanager ?:9093,9094 1/1 23s ago 7m count:1 2024-04-27T02:55:05.985 INFO:teuthology.orchestra.run.smithi037.stdout:ceph-exporter 2/2 30s ago 7m * 2024-04-27T02:55:05.985 INFO:teuthology.orchestra.run.smithi037.stdout:crash 2/2 30s ago 7m * 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:grafana ?:3000 1/1 23s ago 7m count:1 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:ingress.nfs.foo 10.0.31.37:2049,9049 1/4 103s count:2 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:mgr 2/2 30s ago 7m count:2 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:mon 2/2 30s ago 6m smithi037:172.21.15.37=smithi037;smithi123:172.21.15.123=smithi123;count:2 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:nfs.foo ?:12049 1/1 103s count:1 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:node-exporter ?:9100 2/2 30s ago 7m * 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 30s ago 5m * 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:prometheus ?:9095 0/1 - 7m count:1 2024-04-27T02:55:05.986 INFO:teuthology.orchestra.run.smithi037.stdout:rgw.foorgw ?:8800 2/2 30s ago 85s count:2 2024-04-27T02:55:07.153 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch host ls' 2024-04-27T02:55:07.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:07 smithi123 ceph-mon[31187]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:07.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:07 smithi123 ceph-mon[31187]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:07.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:07 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:07.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:07 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:07.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:07 smithi037 ceph-mon[22326]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:07.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:07 smithi037 ceph-mon[22326]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:07.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:07 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:07.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:07 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:08.040 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:55:09.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:09 smithi037 ceph-mon[22326]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:09.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:09 smithi123 ceph-mon[31187]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:11.134 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:11 smithi037 ceph-mon[22326]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:11.141 INFO:teuthology.orchestra.run.smithi037.stdout:HOST ADDR LABELS STATUS 2024-04-27T02:55:11.142 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 172.21.15.37 2024-04-27T02:55:11.142 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 172.21.15.123 2024-04-27T02:55:11.142 INFO:teuthology.orchestra.run.smithi037.stdout:2 hosts in cluster 2024-04-27T02:55:11.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:11 smithi123 ceph-mon[31187]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-04-27T02:55:12.334 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch device ls' 2024-04-27T02:55:13.022 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:55:13.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:13 smithi037 ceph-mon[22326]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:13.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:13 smithi037 ceph-mon[22326]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:13 smithi123 ceph-mon[31187]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:13.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:13 smithi123 ceph-mon[31187]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:15.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:15 smithi037 ceph-mon[22326]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:15.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:15 smithi123 ceph-mon[31187]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:15.730 INFO:teuthology.orchestra.run.smithi037.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-04-27T02:55:15.730 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331005T400BGN 372G No 111s ago Has a FileSystem, LVM detected 2024-04-27T02:55:15.730 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme1n1 ssd Linux_cd02b378a85466085944 89.4G No 111s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.730 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme2n1 ssd Linux_f082d335b87fc8dd21d3 89.4G No 111s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.730 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme3n1 ssd Linux_ea9cf84238e077255540 89.4G No 111s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi037 /dev/nvme4n1 ssd Linux_4c0c4a7e55600c4be866 89.4G No 111s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400YK400BGN 372G No 65s ago Has a FileSystem, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme1n1 ssd Linux_6c101462796bbbe44a0b 89.4G No 65s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme2n1 ssd Linux_985b7efe24eb45370172 89.4G No 65s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme3n1 ssd Linux_71ccb995437e5cd74c75 89.4G No 65s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:15.731 INFO:teuthology.orchestra.run.smithi037.stdout:smithi123 /dev/nvme4n1 ssd Linux_dece05276d76acc9cbdb 89.4G No 65s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-04-27T02:55:16.538 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 379591b2-0440-11ef-bc93-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-04-27T02:55:16.985 INFO:teuthology.orchestra.run.smithi037.stderr:Inferring config /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/mon.smithi037/config 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:55:17.345 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:17 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:55:17.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:17.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-04-27T02:55:17.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:17.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:17.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-27T02:55:17.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:17 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-27T02:55:18.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:18 smithi123 ceph-mon[31187]: Checking dashboard <-> RGW credentials 2024-04-27T02:55:18.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:18.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:18 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:55:18.399 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:18 smithi037 ceph-mon[22326]: Checking dashboard <-> RGW credentials 2024-04-27T02:55:18.399 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' 2024-04-27T02:55:18.399 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:18 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-27T02:55:19.118 INFO:teuthology.orchestra.run.smithi037.stdout:osd.all-available-devices 8 12s ago 5m * 2024-04-27T02:55:19.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:19 smithi037 ceph-mon[22326]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:19.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:19 smithi037 ceph-mon[22326]: Removing orphan daemon nfs.foo.0.0.smithi037.mgjozk... 2024-04-27T02:55:19.275 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:19 smithi037 ceph-mon[22326]: Removing daemon nfs.foo.0.0.smithi037.mgjozk from smithi037 -- ports [12049] 2024-04-27T02:55:19.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:19 smithi123 ceph-mon[31187]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-04-27T02:55:19.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:19 smithi123 ceph-mon[31187]: Removing orphan daemon nfs.foo.0.0.smithi037.mgjozk... 2024-04-27T02:55:19.355 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:19 smithi123 ceph-mon[31187]: Removing daemon nfs.foo.0.0.smithi037.mgjozk from smithi037 -- ports [12049] 2024-04-27T02:55:19.886 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-04-27T02:55:19.898 INFO:tasks.vip:Removing 10.0.15.37 (and any VIPs) on smithi037.front.sepia.ceph.com iface ens1f0... 2024-04-27T02:55:19.898 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr del 10.0.15.37/16 dev ens1f0 2024-04-27T02:55:19.926 DEBUG:teuthology.orchestra.run.smithi037:> sudo ip addr del 10.0.31.37/16 dev ens1f0 2024-04-27T02:55:19.990 INFO:tasks.vip:Removing 10.0.15.123 (and any VIPs) on smithi123.front.sepia.ceph.com iface enp3s0f1... 2024-04-27T02:55:19.991 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr del 10.0.15.123/16 dev enp3s0f1 2024-04-27T02:55:20.018 DEBUG:teuthology.orchestra.run.smithi123:> sudo ip addr del 10.0.31.37/16 dev enp3s0f1 2024-04-27T02:55:20.080 INFO:teuthology.orchestra.run.smithi123.stderr:Error: ipv4: Address not found. 2024-04-27T02:55:20.081 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-04-27T02:55:20.081 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-27T02:55:20.092 INFO:tasks.cephadm:Teardown begin 2024-04-27T02:55:20.092 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:55:20.113 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:20 smithi037 ceph-mon[22326]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:55:20.117 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:55:20.145 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-27T02:55:20.145 DEBUG:teuthology.orchestra.run.smithi037:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-27T02:55:20.173 DEBUG:teuthology.orchestra.run.smithi123:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-27T02:55:20.201 INFO:tasks.cephadm:Stopping all daemons... 2024-04-27T02:55:20.201 INFO:tasks.cephadm.mon.smithi037:Stopping mon.smithi037... 2024-04-27T02:55:20.201 DEBUG:teuthology.orchestra.run.smithi037:> sudo systemctl stop ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037 2024-04-27T02:55:20.354 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:20 smithi123 ceph-mon[31187]: from='mgr.14215 172.21.15.37:0/2908450269' entity='mgr.smithi037.opdlyg' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-27T02:55:20.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:20 smithi037 systemd[1]: Stopping Ceph mon.smithi037 for 379591b2-0440-11ef-bc93-c7b262605968... 2024-04-27T02:55:21.025 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:20 smithi037 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037[22322]: 2024-04-27T02:55:20.526+0000 7f3ee2532700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi037 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-27T02:55:21.026 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:20 smithi037 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037[22322]: 2024-04-27T02:55:20.526+0000 7f3ee2532700 -1 mon.smithi037@0(leader) e2 *** Got Signal Terminated *** 2024-04-27T02:55:21.026 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:20 smithi037 podman[86398]: 2024-04-27 02:55:20.773559687 +0000 UTC m=+0.355759839 container died 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, ceph=True, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, org.label-schema.license=GPLv2, org.label-schema.build-date=20240424, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=squid-b22e2eb, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-27T02:55:21.525 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:21 smithi037 podman[86398]: 2024-04-27 02:55:21.245016928 +0000 UTC m=+0.827217104 container cleanup 585de42715ebc9f12fd87ce2fc32aebeae41ec055dab655fcc31ba5f8c6bfe50 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:b22e2ebdeb24376882b7bda2a7329c8cccc2276a, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , RELEASE=squid-b22e2eb, io.buildah.version=1.33.5, org.label-schema.build-date=20240424, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-04-27T02:55:21.526 INFO:journalctl@ceph.mon.smithi037.smithi037.stdout:Apr 27 02:55:21 smithi037 bash[86398]: ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi037 2024-04-27T02:55:21.705 DEBUG:teuthology.orchestra.run.smithi037:> sudo pkill -f 'journalctl -f -n 0 -u ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi037.service' 2024-04-27T02:55:21.755 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-27T02:55:21.755 INFO:tasks.cephadm.mon.smithi037:Stopped mon.smithi037 2024-04-27T02:55:21.756 INFO:tasks.cephadm.mon.smithi123:Stopping mon.smithi123... 2024-04-27T02:55:21.756 DEBUG:teuthology.orchestra.run.smithi123:> sudo systemctl stop ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi123 2024-04-27T02:55:22.104 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:21 smithi123 systemd[1]: Stopping Ceph mon.smithi123 for 379591b2-0440-11ef-bc93-c7b262605968... 2024-04-27T02:55:22.362 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:22 smithi123 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi123[31157]: 2024-04-27T02:55:22.106+0000 7f16154b2700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi123 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-27T02:55:22.362 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:22 smithi123 ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi123[31157]: 2024-04-27T02:55:22.106+0000 7f16154b2700 -1 mon.smithi123@1(peon) e2 *** Got Signal Terminated *** 2024-04-27T02:55:22.658 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:22 smithi123 podman[60573]: 2024-04-27 02:55:22.36276432 +0000 UTC m=+0.420512416 container died c8307bb66d1fe2983a7683d16c6837bd69cb61e59d4610e8909eb6537f73773f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:265587011b499c966b9dbaf00ce5756e85851e17df544df961d9e3203c8e39d6, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi123, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240424, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, RELEASE=squid-b22e2eb, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS) 2024-04-27T02:55:23.017 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:22 smithi123 podman[60573]: 2024-04-27 02:55:22.749306419 +0000 UTC m=+0.807054532 container cleanup c8307bb66d1fe2983a7683d16c6837bd69cb61e59d4610e8909eb6537f73773f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:265587011b499c966b9dbaf00ce5756e85851e17df544df961d9e3203c8e39d6, name=ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi123, ceph=True, GIT_COMMIT=318fe5928e744a8c3fe408a2f9ccaca3c31b552b, RELEASE=squid-b22e2eb, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.build-date=20240424, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-04-27T02:55:23.017 INFO:journalctl@ceph.mon.smithi123.smithi123.stdout:Apr 27 02:55:22 smithi123 bash[60573]: ceph-379591b2-0440-11ef-bc93-c7b262605968-mon-smithi123 2024-04-27T02:55:23.178 DEBUG:teuthology.orchestra.run.smithi123:> sudo pkill -f 'journalctl -f -n 0 -u ceph-379591b2-0440-11ef-bc93-c7b262605968@mon.smithi123.service' 2024-04-27T02:55:23.222 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-27T02:55:23.222 INFO:tasks.cephadm.mon.smithi123:Stopped mon.smithi123 2024-04-27T02:55:23.222 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 379591b2-0440-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-27T02:55:30.155 INFO:teuthology.orchestra.run.smithi037.stdout:Deleting cluster with fsid: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:56:28.671 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 379591b2-0440-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-27T02:56:28.866 INFO:teuthology.orchestra.run.smithi123.stdout:Deleting cluster with fsid: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:57:17.986 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:57:18.020 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-27T02:57:18.046 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-27T02:57:18.048 DEBUG:teuthology.misc:Transferring archived files from smithi037:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi037/crash 2024-04-27T02:57:18.048 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash -- . 2024-04-27T02:57:18.119 INFO:teuthology.orchestra.run.smithi037.stderr:tar: /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-27T02:57:18.119 INFO:teuthology.orchestra.run.smithi037.stderr:tar: Error is not recoverable: exiting now 2024-04-27T02:57:18.121 DEBUG:teuthology.misc:Transferring archived files from smithi123:/var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi123/crash 2024-04-27T02:57:18.122 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash -- . 2024-04-27T02:57:18.154 INFO:teuthology.orchestra.run.smithi123.stderr:tar: /var/lib/ceph/379591b2-0440-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-27T02:57:18.155 INFO:teuthology.orchestra.run.smithi123.stderr:tar: Error is not recoverable: exiting now 2024-04-27T02:57:18.156 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-27T02:57:18.156 DEBUG:teuthology.orchestra.run.smithi037:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-27T02:57:18.190 INFO:tasks.cephadm:Compressing logs... 2024-04-27T02:57:18.191 DEBUG:teuthology.orchestra.run.smithi037:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-27T02:57:18.234 DEBUG:teuthology.orchestra.run.smithi123:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-27T02:57:18.256 INFO:teuthology.orchestra.run.smithi037.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi037.mjxyhc.log 2024-04-27T02:57:18.256 INFO:teuthology.orchestra.run.smithi037.stderr:: No such file or directory 2024-04-27T02:57:18.257 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log 2024-04-27T02:57:18.257 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi037.mjxyhc.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-27T02:57:18.257 INFO:teuthology.orchestra.run.smithi037.stderr: 76.8% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi037.mjxyhc.log.gz 2024-04-27T02:57:18.257 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi037.opdlyg.log 2024-04-27T02:57:18.257 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.7.log 2024-04-27T02:57:18.259 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log: /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi037.opdlyg.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.5.log 2024-04-27T02:57:18.260 INFO:teuthology.orchestra.run.smithi037.stderr: 87.0% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-27T02:57:18.260 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.3.log 2024-04-27T02:57:18.260 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi037.log 2024-04-27T02:57:18.266 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.1.log 2024-04-27T02:57:18.266 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi037.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi037.log 2024-04-27T02:57:18.266 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.1.log: 93.7% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi037.log.gz 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr: 90.9% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log.gz 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi037.mjxyhc.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi037.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi037.mjxyhc.log: 68.6% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi037.mjxyhc.log.gz 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log: 83.5% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi037.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi123.vxrhov.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:: No such file or directory 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.2.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi123.vxrhov.log: /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-27T02:57:18.267 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.4.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi123.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log: gzip -5 --verbose --/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.4.log: /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.0.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr: 86.7% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:gzip/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi123.log: -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi123.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr: 30.1% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi123.log.gz 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.6.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi123.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi123.dqhsjj.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr: 91.1% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.audit.log.gz/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log: 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr: 82.8% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:gzip -5 --verbose -- /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi123.dqhsjj.log: gzip -5 --verbose 59.3% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-client.rgw.foorgw.smithi123.dqhsjj.log.gz 2024-04-27T02:57:18.268 INFO:teuthology.orchestra.run.smithi123.stderr: -- /var/log/ceph/cephadm.log 2024-04-27T02:57:18.269 INFO:teuthology.orchestra.run.smithi123.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log: /var/log/ceph/cephadm.log: 92.0% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi123.vxrhov.log.gz 2024-04-27T02:57:18.269 INFO:teuthology.orchestra.run.smithi123.stderr: 91.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-27T02:57:18.275 INFO:teuthology.orchestra.run.smithi123.stderr: 91.3% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log.gz 2024-04-27T02:57:18.289 INFO:teuthology.orchestra.run.smithi037.stderr:/var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log: /var/log/ceph/cephadm.log: 91.0% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-volume.log.gz 2024-04-27T02:57:18.305 INFO:teuthology.orchestra.run.smithi037.stderr: 91.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-27T02:57:18.377 INFO:teuthology.orchestra.run.smithi123.stderr: 92.6% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi123.log.gz 2024-04-27T02:57:18.434 INFO:teuthology.orchestra.run.smithi037.stderr: 88.9% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mgr.smithi037.opdlyg.log.gz 2024-04-27T02:57:18.540 INFO:teuthology.orchestra.run.smithi037.stderr: 93.4% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.5.log.gz 2024-04-27T02:57:18.566 INFO:teuthology.orchestra.run.smithi123.stderr: 93.5% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.4.log.gz 2024-04-27T02:57:18.581 INFO:teuthology.orchestra.run.smithi123.stderr: 93.5% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.2.log.gz 2024-04-27T02:57:18.586 INFO:teuthology.orchestra.run.smithi037.stderr: 91.2% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-mon.smithi037.log.gz 2024-04-27T02:57:18.586 INFO:teuthology.orchestra.run.smithi123.stderr: 93.3% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.6.log.gz 2024-04-27T02:57:18.609 INFO:teuthology.orchestra.run.smithi037.stderr: 93.5% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.7.log.gz 2024-04-27T02:57:18.672 INFO:teuthology.orchestra.run.smithi037.stderr: 93.6% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.1.log.gz 2024-04-27T02:57:18.688 INFO:teuthology.orchestra.run.smithi123.stderr: 93.5% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.0.log.gz 2024-04-27T02:57:18.690 INFO:teuthology.orchestra.run.smithi123.stderr: 2024-04-27T02:57:18.690 INFO:teuthology.orchestra.run.smithi123.stderr:real 0m0.442s 2024-04-27T02:57:18.690 INFO:teuthology.orchestra.run.smithi123.stderr:user 0m1.474s 2024-04-27T02:57:18.690 INFO:teuthology.orchestra.run.smithi123.stderr:sys 0m0.082s 2024-04-27T02:57:18.750 INFO:teuthology.orchestra.run.smithi037.stderr: 93.6% -- replaced with /var/log/ceph/379591b2-0440-11ef-bc93-c7b262605968/ceph-osd.3.log.gz 2024-04-27T02:57:18.752 INFO:teuthology.orchestra.run.smithi037.stderr: 2024-04-27T02:57:18.752 INFO:teuthology.orchestra.run.smithi037.stderr:real 0m0.506s 2024-04-27T02:57:18.752 INFO:teuthology.orchestra.run.smithi037.stderr:user 0m2.019s 2024-04-27T02:57:18.752 INFO:teuthology.orchestra.run.smithi037.stderr:sys 0m0.094s 2024-04-27T02:57:18.752 INFO:tasks.cephadm:Archiving logs... 2024-04-27T02:57:18.752 DEBUG:teuthology.misc:Transferring archived files from smithi037:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi037/log 2024-04-27T02:57:18.753 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-27T02:57:19.080 DEBUG:teuthology.misc:Transferring archived files from smithi123:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi123/log 2024-04-27T02:57:19.080 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-27T02:57:19.336 INFO:tasks.cephadm:Removing cluster... 2024-04-27T02:57:19.336 DEBUG:teuthology.orchestra.run.smithi037:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 379591b2-0440-11ef-bc93-c7b262605968 --force 2024-04-27T02:57:19.522 INFO:teuthology.orchestra.run.smithi037.stdout:Deleting cluster with fsid: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:57:19.643 DEBUG:teuthology.orchestra.run.smithi123:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 379591b2-0440-11ef-bc93-c7b262605968 --force 2024-04-27T02:57:19.821 INFO:teuthology.orchestra.run.smithi123.stdout:Deleting cluster with fsid: 379591b2-0440-11ef-bc93-c7b262605968 2024-04-27T02:57:19.939 INFO:tasks.cephadm:Removing cephadm ... 2024-04-27T02:57:19.939 DEBUG:teuthology.orchestra.run.smithi037:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-27T02:57:19.955 DEBUG:teuthology.orchestra.run.smithi123:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-27T02:57:19.970 INFO:tasks.cephadm:Teardown complete 2024-04-27T02:57:19.970 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-27T02:57:19.982 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_1... 2024-04-27T02:57:19.982 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_1 2024-04-27T02:57:20.130 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-27T02:57:20.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.132 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_2... 2024-04-27T02:57:20.132 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_2 2024-04-27T02:57:20.268 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-27T02:57:20.269 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.269 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_3... 2024-04-27T02:57:20.269 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_3 2024-04-27T02:57:20.424 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-27T02:57:20.425 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.425 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi037:/dev/vg_nvme/lv_4... 2024-04-27T02:57:20.425 DEBUG:teuthology.orchestra.run.smithi037:> sudo nvme disconnect -n lv_4 2024-04-27T02:57:20.568 INFO:teuthology.orchestra.run.smithi037.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-27T02:57:20.569 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.569 DEBUG:teuthology.orchestra.run.smithi037:> set -ex 2024-04-27T02:57:20.569 DEBUG:teuthology.orchestra.run.smithi037:> sudo dd of=/scratch_devs 2024-04-27T02:57:20.595 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_1... 2024-04-27T02:57:20.596 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_1 2024-04-27T02:57:20.736 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-27T02:57:20.738 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.738 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_2... 2024-04-27T02:57:20.738 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_2 2024-04-27T02:57:20.874 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-27T02:57:20.875 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:20.876 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_3... 2024-04-27T02:57:20.876 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_3 2024-04-27T02:57:21.060 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-27T02:57:21.061 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:21.062 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi123:/dev/vg_nvme/lv_4... 2024-04-27T02:57:21.062 DEBUG:teuthology.orchestra.run.smithi123:> sudo nvme disconnect -n lv_4 2024-04-27T02:57:21.229 INFO:teuthology.orchestra.run.smithi123.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-27T02:57:21.231 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:21.232 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-27T02:57:21.232 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/scratch_devs 2024-04-27T02:57:21.256 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-27T02:57:21.267 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-27T02:57:21.267 DEBUG:teuthology.orchestra.run.smithi037:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-27T02:57:21.270 DEBUG:teuthology.orchestra.run.smithi123:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-27T02:57:21.284 INFO:teuthology.orchestra.run.smithi037.stderr:bash: line 1: ntpq: command not found 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:=============================================================================== 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:^* hv01.front.sepia.ceph.com 3 6 377 60 +1824us[+1818us] +/- 42ms 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 58 -3046us[-3046us] +/- 74ms 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 59 +139us[ +139us] +/- 71ms 2024-04-27T02:57:21.290 INFO:teuthology.orchestra.run.smithi037.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:57:21.311 INFO:teuthology.orchestra.run.smithi123.stderr:bash: line 1: ntpq: command not found 2024-04-27T02:57:21.314 INFO:teuthology.orchestra.run.smithi123.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-27T02:57:21.314 INFO:teuthology.orchestra.run.smithi123.stdout:=============================================================================== 2024-04-27T02:57:21.315 INFO:teuthology.orchestra.run.smithi123.stdout:^* hv01.front.sepia.ceph.com 3 6 377 61 +1836us[+1834us] +/- 42ms 2024-04-27T02:57:21.315 INFO:teuthology.orchestra.run.smithi123.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 59 -3030us[-3030us] +/- 74ms 2024-04-27T02:57:21.315 INFO:teuthology.orchestra.run.smithi123.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 57 +189us[ +189us] +/- 71ms 2024-04-27T02:57:21.315 INFO:teuthology.orchestra.run.smithi123.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-27T02:57:21.316 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-27T02:57:21.327 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-27T02:57:21.328 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-27T02:57:21.338 DEBUG:teuthology.orchestra.run.smithi037:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-27T02:57:21.416 DEBUG:teuthology.orchestra.run.smithi123:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-27T02:57:21.481 DEBUG:teuthology.orchestra.run.smithi037:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-27T02:57:21.511 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:21.512 DEBUG:teuthology.orchestra.run.smithi123:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-27T02:57:21.537 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:21.538 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-27T02:57:21.550 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-27T02:57:21.562 INFO:teuthology.task.internal:Duration was 925.685561 seconds 2024-04-27T02:57:21.562 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-27T02:57:21.574 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-27T02:57:21.574 DEBUG:teuthology.orchestra.run.smithi037:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-27T02:57:21.577 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-27T02:57:21.614 INFO:teuthology.orchestra.run.smithi123.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-27T02:57:21.615 INFO:teuthology.orchestra.run.smithi037.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-27T02:57:21.891 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-27T02:57:21.891 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi037.front.sepia.ceph.com 2024-04-27T02:57:21.892 DEBUG:teuthology.orchestra.run.smithi037:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-27T02:57:21.913 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi123.front.sepia.ceph.com 2024-04-27T02:57:21.913 DEBUG:teuthology.orchestra.run.smithi123:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-27T02:57:21.953 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-27T02:57:21.953 DEBUG:teuthology.orchestra.run.smithi037:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-27T02:57:21.955 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-27T02:57:22.018 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-27T02:57:22.019 DEBUG:teuthology.orchestra.run.smithi037:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-27T02:57:22.022 DEBUG:teuthology.orchestra.run.smithi123:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-27T02:57:22.301 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-27T02:57:22.314 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-27T02:57:22.314 DEBUG:teuthology.orchestra.run.smithi037:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-27T02:57:22.339 DEBUG:teuthology.orchestra.run.smithi123:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-27T02:57:22.363 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-27T02:57:22.376 DEBUG:teuthology.orchestra.run.smithi037:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-27T02:57:22.381 DEBUG:teuthology.orchestra.run.smithi123:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-27T02:57:22.402 INFO:teuthology.orchestra.run.smithi037.stdout:kernel.core_pattern = core 2024-04-27T02:57:22.425 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = core 2024-04-27T02:57:22.444 DEBUG:teuthology.orchestra.run.smithi037:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-27T02:57:22.479 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:22.479 DEBUG:teuthology.orchestra.run.smithi123:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-27T02:57:22.498 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-27T02:57:22.498 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-27T02:57:22.511 INFO:teuthology.task.internal:Transferring archived files... 2024-04-27T02:57:22.511 DEBUG:teuthology.misc:Transferring archived files from smithi037:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi037 2024-04-27T02:57:22.512 DEBUG:teuthology.orchestra.run.smithi037:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-27T02:57:22.558 DEBUG:teuthology.misc:Transferring archived files from smithi123:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-26_21:08:03-orch-squid-distro-default-smithi/7675602/remote/smithi123 2024-04-27T02:57:22.558 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-27T02:57:22.592 INFO:teuthology.task.internal:Removing archive directory... 2024-04-27T02:57:22.592 DEBUG:teuthology.orchestra.run.smithi037:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-27T02:57:22.595 DEBUG:teuthology.orchestra.run.smithi123:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-27T02:57:22.641 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-27T02:57:22.655 INFO:teuthology.task.internal:Not uploading archives. 2024-04-27T02:57:22.655 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-27T02:57:22.667 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-27T02:57:22.667 DEBUG:teuthology.orchestra.run.smithi037:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-27T02:57:22.670 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-27T02:57:22.682 INFO:teuthology.orchestra.run.smithi037.stdout: 262213 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 27 02:57 /home/ubuntu/cephtest 2024-04-27T02:57:22.695 INFO:teuthology.orchestra.run.smithi123.stdout: 262213 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 27 02:57 /home/ubuntu/cephtest 2024-04-27T02:57:22.696 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-27T02:57:22.708 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-27T02:57:22.737 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 925.6855611801147 owner: scheduled_teuthology@teuthology success: true 2024-04-27T02:57:22.737 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-27T02:57:22.816 INFO:teuthology.run:pass