2024-09-17T00:02:50.495 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T00:02:50.651 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T00:02:50.740 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7907921' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi no_nested_subset: false 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\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: squid sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 599 sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f sleep_before_teardown: 0 subset: 33/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e20bff7d16f5b09c58ead9548e8cf98cf87ee227 targets: smithi027.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEb+mPzGPpGrPoTXXdDhnURpNn0AvtHQk+99MT1ka3otB78zJXc8B9/h7dGGEuduKTK0pLtscRMXk4mFwqar1Jk= smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMu+F8HltaP7bckRAIoIKeN05VN1LYNI5PTXBERB9BwBiM3z5pvThnOZUaZ9licrKQ+2Bv9DvKmVo2iPaAVJ0Kk= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - 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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - 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}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/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 /foobucket - 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: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-16_21:08:04 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T00:02:50.740 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa; will attempt to use it 2024-09-17T00:02:50.741 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e20bff7d16f5b09c58ead9548e8cf98cf87ee227/qa/tasks 2024-09-17T00:02:50.741 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T00:02:50.742 INFO:teuthology.task.internal:Checking packages... 2024-09-17T00:02:50.764 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'c2ddf9721ef254645201cdbabd9c8f49c30a586f' 2024-09-17T00:02:50.764 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T00:02:50.764 INFO:teuthology.packaging:ref: None 2024-09-17T00:02:50.764 INFO:teuthology.packaging:tag: None 2024-09-17T00:02:50.764 INFO:teuthology.packaging:branch: squid 2024-09-17T00:02:50.764 INFO:teuthology.packaging:sha1: c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T00:02:50.765 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-09-17T00:02:50.974 INFO:teuthology.task.internal:Found packages for ceph version 19.2.0-0 2024-09-17T00:02:50.976 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T00:02:50.997 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T00:02:50.997 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T00:02:51.003 INFO:teuthology.task.internal:Saving configuration 2024-09-17T00:02:51.016 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T00:02:51.042 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T00:02:51.063 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 23:56:44.403146', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEb+mPzGPpGrPoTXXdDhnURpNn0AvtHQk+99MT1ka3otB78zJXc8B9/h7dGGEuduKTK0pLtscRMXk4mFwqar1Jk='} 2024-09-17T00:02:51.085 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-16 23:56:44.404754', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMu+F8HltaP7bckRAIoIKeN05VN1LYNI5PTXBERB9BwBiM3z5pvThnOZUaZ9licrKQ+2Bv9DvKmVo2iPaAVJ0Kk='} 2024-09-17T00:02:51.086 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T00:02:51.111 INFO:teuthology.task.internal:roles: ubuntu@smithi027.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-17T00:02:51.111 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-17T00:02:51.112 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T00:02:51.168 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fac881f3ac0>, signals=[15]) 2024-09-17T00:02:51.168 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T00:02:51.180 INFO:teuthology.task.internal:Opening connections... 2024-09-17T00:02:51.181 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:02:51.182 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:02:51.264 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-09-17T00:02:51.265 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:02:51.343 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T00:02:51.355 DEBUG:teuthology.orchestra.run.smithi027:> uname -m 2024-09-17T00:02:51.373 INFO:teuthology.orchestra.run.smithi027.stdout:x86_64 2024-09-17T00:02:51.373 DEBUG:teuthology.orchestra.run.smithi027:> cat /etc/os-release 2024-09-17T00:02:51.431 INFO:teuthology.orchestra.run.smithi027.stdout:NAME="CentOS Stream" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION="9" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:ID="centos" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:ID_LIKE="rhel fedora" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION_ID="9" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:PLATFORM_ID="platform:el9" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:ANSI_COLOR="0;31" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:LOGO="fedora-logo-icon" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:HOME_URL="https://centos.org/" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T00:02:51.432 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T00:02:51.433 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T00:02:51.433 INFO:teuthology.lock.ops:Updating smithi027.front.sepia.ceph.com on lock server 2024-09-17T00:02:51.454 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-09-17T00:02:51.472 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-09-17T00:02:51.472 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-09-17T00:02:51.529 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="CentOS Stream" 2024-09-17T00:02:51.529 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="9" 2024-09-17T00:02:51.529 INFO:teuthology.orchestra.run.smithi050.stdout:ID="centos" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE="rhel fedora" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="9" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:PLATFORM_ID="platform:el9" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:ANSI_COLOR="0;31" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:LOGO="fedora-logo-icon" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://centos.org/" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T00:02:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T00:02:51.531 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-09-17T00:02:51.554 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T00:02:51.579 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T00:02:51.585 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T00:02:51.586 DEBUG:teuthology.orchestra.run.smithi027:> test '!' -e /home/ubuntu/cephtest 2024-09-17T00:02:51.591 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-09-17T00:02:51.607 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T00:02:51.616 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T00:02:51.616 DEBUG:teuthology.orchestra.run.smithi027:> test -z $(ls -A /var/lib/ceph) 2024-09-17T00:02:51.648 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-09-17T00:02:51.675 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T00:02:51.727 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T00:02:51.739 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T00:02:51.739 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T00:02:51.739 DEBUG:teuthology.orchestra.run.smithi027:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T00:02:51.740 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T00:02:51.756 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:02:51.757 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-17T00:02:51.758 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:02:51.758 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-09-17T00:02:51.814 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-503.el9.x86_64 2024-09-17T00:02:51.815 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.14.0-503.el9.x86_64 2024-09-17T00:02:51.815 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum install -y kernel 2024-09-17T00:02:51.816 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-503.el9.x86_64 2024-09-17T00:02:51.816 INFO:teuthology.task.kernel:Running kernel on smithi027: 5.14.0-503.el9.x86_64 2024-09-17T00:02:51.816 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum install -y kernel 2024-09-17T00:02:55.213 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.3 MB 00:01 2024-09-17T00:02:55.632 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - BaseOS 4.1 MB/s | 8.3 MB 00:02 2024-09-17T00:02:58.114 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - AppStream 11 MB/s | 20 MB 00:01 2024-09-17T00:02:58.293 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - AppStream 13 MB/s | 20 MB 00:01 2024-09-17T00:03:03.578 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - CRB 4.6 MB/s | 6.5 MB 00:01 2024-09-17T00:03:03.700 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-17T00:03:05.118 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - Extras packages 68 kB/s | 19 kB 00:00 2024-09-17T00:03:05.290 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - Extras packages 58 kB/s | 19 kB 00:00 2024-09-17T00:03:06.055 INFO:teuthology.orchestra.run.smithi027.stdout:Extra Packages for Enterprise Linux 28 MB/s | 23 MB 00:00 2024-09-17T00:03:06.195 INFO:teuthology.orchestra.run.smithi050.stdout:Extra Packages for Enterprise Linux 29 MB/s | 23 MB 00:00 2024-09-17T00:03:11.670 INFO:teuthology.orchestra.run.smithi027.stdout:lab-extras 39 kB/s | 1.7 kB 00:00 2024-09-17T00:03:11.776 INFO:teuthology.orchestra.run.smithi050.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-17T00:03:13.626 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T00:03:13.626 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T00:03:13.715 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-09-17T00:03:13.716 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T00:03:13.716 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T00:03:13.721 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout:Install 4 Packages 2024-09-17T00:03:13.722 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:03:13.723 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 79 M 2024-09-17T00:03:13.723 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 126 M 2024-09-17T00:03:13.723 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-09-17T00:03:13.813 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-17T00:03:13.821 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:03:13.821 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout:Install 4 Packages 2024-09-17T00:03:13.822 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:03:13.823 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 79 M 2024-09-17T00:03:13.823 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 126 M 2024-09-17T00:03:13.823 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-17T00:03:13.854 INFO:teuthology.orchestra.run.smithi027.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 334 kB/s | 36 kB 00:00 2024-09-17T00:03:14.227 INFO:teuthology.orchestra.run.smithi050.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 128 kB/s | 36 kB 00:00 2024-09-17T00:03:17.179 INFO:teuthology.orchestra.run.smithi027.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 4.6 MB/s | 16 MB 00:03 2024-09-17T00:03:18.004 INFO:teuthology.orchestra.run.smithi027.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 6.9 MB/s | 29 MB 00:04 2024-09-17T00:03:19.397 INFO:teuthology.orchestra.run.smithi027.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 6.1 MB/s | 35 MB 00:05 2024-09-17T00:03:19.397 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:03:19.397 INFO:teuthology.orchestra.run.smithi027.stdout:Total 14 MB/s | 79 MB 00:05 2024-09-17T00:03:19.569 INFO:teuthology.orchestra.run.smithi050.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 2.8 MB/s | 16 MB 00:05 2024-09-17T00:03:20.104 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-09-17T00:03:20.549 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-09-17T00:03:20.549 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-09-17T00:03:21.572 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-09-17T00:03:21.572 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-09-17T00:03:22.777 INFO:teuthology.orchestra.run.smithi050.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 3.9 MB/s | 35 MB 00:08 2024-09-17T00:03:24.171 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-09-17T00:03:24.826 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T00:03:24.907 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:03:26.910 INFO:teuthology.orchestra.run.smithi050.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 2.3 MB/s | 29 MB 00:12 2024-09-17T00:03:26.910 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:03:26.910 INFO:teuthology.orchestra.run.smithi050.stdout:Total 6.0 MB/s | 79 MB 00:13 2024-09-17T00:03:27.618 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-17T00:03:27.804 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:03:27.926 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:03:27.996 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-17T00:03:27.997 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-17T00:03:28.970 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-17T00:03:28.970 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-17T00:03:31.556 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-17T00:03:32.216 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T00:03:32.297 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:03:33.151 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:03:33.193 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:03:35.047 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:03:35.175 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:03:38.429 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:03:40.302 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:03:40.343 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:03:45.490 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:18.631 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:18.673 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:19.042 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:19.042 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T00:04:19.042 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:04:19.042 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:04:19.844 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:19.844 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:04:19.844 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-09-17T00:04:19.845 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:19.845 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T00:04:19.845 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T00:04:19.845 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T00:04:19.845 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:04:19.846 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-09-17T00:04:20.233 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T00:04:20.321 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:20.322 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T00:04:20.322 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T00:04:20.322 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T00:04:20.322 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T00:04:20.322 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T00:04:20.323 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi027.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T00:04:20.323 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T00:04:20.384 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:20.384 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T00:04:20.385 DEBUG:teuthology.orchestra.run.smithi027:> sudo rpm -qi grub2-tools 2024-09-17T00:04:20.424 INFO:teuthology.orchestra.run.smithi027.stdout:Name : grub2-tools 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Epoch : 1 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Version : 2.06 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Release : 82.el9 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Architecture: x86_64 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Group : Unspecified 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Size : 8274670 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:License : GPLv3+ 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T00:04:20.425 INFO:teuthology.orchestra.run.smithi027.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:Packager : builder@centos.org 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:Vendor : CentOS 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:Summary : Support tools for GRUB. 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:Description : 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T00:04:20.426 INFO:teuthology.orchestra.run.smithi027.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T00:04:20.427 INFO:teuthology.orchestra.run.smithi027.stdout:hardware devices. 2024-09-17T00:04:20.427 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:04:20.427 INFO:teuthology.orchestra.run.smithi027.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T00:04:20.428 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T00:04:20.428 INFO:teuthology.task.kernel:Updating grub on smithi027 to boot 5.14.0-508.el9.x86_64 2024-09-17T00:04:20.428 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T00:04:21.098 INFO:teuthology.orchestra.run.smithi027.stderr:Generating grub configuration file ... 2024-09-17T00:04:22.443 INFO:teuthology.orchestra.run.smithi027.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T00:04:22.471 INFO:teuthology.orchestra.run.smithi027.stderr:done 2024-09-17T00:04:22.474 DEBUG:teuthology.orchestra.run.smithi027:> mktemp 2024-09-17T00:04:22.490 INFO:teuthology.orchestra.run.smithi027.stdout:/tmp/tmp.2V1X8UHfcD 2024-09-17T00:04:22.490 DEBUG:teuthology.orchestra.run.smithi027:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.2V1X8UHfcD 2024-09-17T00:04:22.557 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 0666 /tmp/tmp.2V1X8UHfcD 2024-09-17T00:04:22.696 DEBUG:teuthology.orchestra.remote:smithi027:/tmp/tmp.2V1X8UHfcD is 6KB 2024-09-17T00:04:22.745 DEBUG:teuthology.orchestra.run.smithi027:> rm -fr /tmp/tmp.2V1X8UHfcD 2024-09-17T00:04:22.761 DEBUG:teuthology.orchestra.run.smithi027:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T00:04:22.824 INFO:teuthology.orchestra.run.smithi027.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T00:04:22.824 INFO:teuthology.orchestra.run.smithi027.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T00:04:22.825 INFO:teuthology.orchestra.run.smithi027.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T00:04:22.825 INFO:teuthology.orchestra.run.smithi027.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T00:04:22.826 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T00:04:22.978 DEBUG:teuthology.orchestra.run.smithi027:> sudo shutdown -r now 2024-09-17T00:04:24.758 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:24.800 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:25.142 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:25.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T00:04:25.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T00:04:25.142 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T00:04:25.953 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T00:04:25.953 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:04:25.953 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-17T00:04:25.953 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:25.954 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T00:04:25.954 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T00:04:25.954 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T00:04:25.954 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:04:25.954 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-17T00:04:26.287 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T00:04:26.381 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:26.382 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T00:04:26.382 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T00:04:26.382 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T00:04:26.382 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T00:04:26.382 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T00:04:26.382 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T00:04:26.383 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T00:04:26.441 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T00:04:26.441 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T00:04:26.441 DEBUG:teuthology.orchestra.run.smithi050:> sudo rpm -qi grub2-tools 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Name : grub2-tools 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Epoch : 1 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Version : 2.06 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Release : 82.el9 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: x86_64 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Group : Unspecified 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:Size : 8274670 2024-09-17T00:04:26.473 INFO:teuthology.orchestra.run.smithi050.stdout:License : GPLv3+ 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Packager : builder@centos.org 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Vendor : CentOS 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Summary : Support tools for GRUB. 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:Description : 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T00:04:26.474 INFO:teuthology.orchestra.run.smithi050.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T00:04:26.475 INFO:teuthology.orchestra.run.smithi050.stdout:hardware devices. 2024-09-17T00:04:26.475 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:04:26.475 INFO:teuthology.orchestra.run.smithi050.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T00:04:26.475 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T00:04:26.476 INFO:teuthology.task.kernel:Updating grub on smithi050 to boot 5.14.0-508.el9.x86_64 2024-09-17T00:04:26.476 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T00:04:27.112 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-09-17T00:04:28.506 INFO:teuthology.orchestra.run.smithi050.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T00:04:28.537 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-09-17T00:04:28.539 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-09-17T00:04:28.554 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.aHyHmLzrAQ 2024-09-17T00:04:28.554 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.aHyHmLzrAQ 2024-09-17T00:04:28.620 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.aHyHmLzrAQ 2024-09-17T00:04:28.770 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.aHyHmLzrAQ is 6KB 2024-09-17T00:04:28.819 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.aHyHmLzrAQ 2024-09-17T00:04:28.833 DEBUG:teuthology.orchestra.run.smithi050:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T00:04:28.896 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T00:04:28.896 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T00:04:28.896 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T00:04:28.897 INFO:teuthology.orchestra.run.smithi050.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T00:04:28.898 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T00:04:29.172 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-09-17T00:04:53.001 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T00:04:53.002 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:04:53.003 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:04:59.181 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T00:04:59.181 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:04:59.181 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:05:11.357 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-09-17T00:05:17.505 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.50 2024-09-17T00:05:20.360 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:05:20.361 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:05:23.421 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-09-17T00:05:26.509 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:05:26.510 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:05:35.429 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:05:35.430 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:05:38.493 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-09-17T00:05:53.509 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:05:53.510 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:05:56.573 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-09-17T00:06:14.589 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:06:14.590 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:06:26.514 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T00:06:33.021 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-09-17T00:06:38.521 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:06:38.522 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:06:38.930 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-17T00:06:39.292 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:06:39.292 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T00:06:39.292 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-17T00:06:39.309 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-508.el9.x86_64 2024-09-17T00:06:39.309 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T00:06:39.309 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T00:06:39.309 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T00:06:40.310 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T00:06:40.310 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T00:06:40.386 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-09-17T00:06:40.407 DEBUG:teuthology.parallel:result is None 2024-09-17T00:06:54.024 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:06:54.024 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:06:54.284 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-09-17T00:06:54.654 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:06:54.654 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T00:06:54.655 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-09-17T00:06:54.672 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-508.el9.x86_64 2024-09-17T00:06:54.672 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T00:06:54.672 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T00:06:54.673 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T00:06:55.673 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T00:06:55.674 DEBUG:teuthology.orchestra.run.smithi027:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T00:06:55.739 INFO:teuthology.orchestra.run.smithi027.stdout:ttyS1 2024-09-17T00:06:55.765 DEBUG:teuthology.parallel:result is None 2024-09-17T00:06:55.766 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T00:06:55.777 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T00:06:55.778 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T00:06:55.781 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T00:06:55.801 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T00:06:55.812 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T00:06:55.821 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T00:06:55.821 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T00:06:55.839 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T00:06:55.881 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T00:06:55.889 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T00:06:55.889 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-17T00:06:55.920 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-17T00:06:55.951 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T00:06:55.960 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T00:06:55.963 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T00:06:55.972 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T00:06:55.974 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T00:06:55.984 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T00:06:55.984 DEBUG:teuthology.orchestra.run.smithi027:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T00:06:56.007 DEBUG:teuthology.orchestra.run.smithi050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T00:06:56.045 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T00:06:56.053 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T00:06:56.054 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T00:06:56.076 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T00:06:56.103 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T00:06:56.180 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T00:06:56.225 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T00:06:56.307 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T00:06:56.349 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:06:56.349 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T00:06:56.415 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T00:06:56.462 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T00:06:56.515 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T00:06:56.603 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T00:06:56.647 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:06:56.648 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T00:06:56.718 DEBUG:teuthology.orchestra.run.smithi027:> sudo service rsyslog restart 2024-09-17T00:06:56.722 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-09-17T00:06:56.770 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T00:06:56.810 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T00:06:57.282 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T00:06:57.313 INFO:teuthology.task.internal:Starting timer... 2024-09-17T00:06:57.314 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T00:06:57.327 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T00:06:57.339 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-09-17T00:06:57.339 DEBUG:teuthology.orchestra.run.smithi027:> sudo service auditd rotate 2024-09-17T00:06:57.381 INFO:teuthology.orchestra.run.smithi027.stdout:Rotating logs: 2024-09-17T00:06:57.383 DEBUG:teuthology.orchestra.run.smithi050:> sudo service auditd rotate 2024-09-17T00:06:57.444 INFO:teuthology.orchestra.run.smithi050.stdout:Rotating logs: 2024-09-17T00:06:57.446 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T00:06:57.446 DEBUG:teuthology.orchestra.run.smithi027:> /usr/sbin/getenforce 2024-09-17T00:06:57.500 INFO:teuthology.orchestra.run.smithi027.stdout:Permissive 2024-09-17T00:06:57.501 DEBUG:teuthology.orchestra.run.smithi050:> /usr/sbin/getenforce 2024-09-17T00:06:57.524 INFO:teuthology.orchestra.run.smithi050.stdout:Permissive 2024-09-17T00:06:57.525 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi027.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi050.front.sepia.ceph.com': 'permissive'} 2024-09-17T00:06:57.525 DEBUG:teuthology.orchestra.run.smithi027:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T00:06:57.552 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:06:57.552 DEBUG:teuthology.orchestra.run.smithi050:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T00:06:57.593 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:06:57.594 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T00:06:57.594 DEBUG:teuthology.orchestra.run.smithi027:> sudo /usr/sbin/setenforce permissive 2024-09-17T00:06:57.624 DEBUG:teuthology.orchestra.run.smithi050:> sudo /usr/sbin/setenforce permissive 2024-09-17T00:06:57.664 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T00:06:57.724 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T00:06:57.737 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-17T00:06:57.738 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi027.front.sepia.ceph.com,smithi050.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T00:10:48.903 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi027.front.sepia.ceph.com'), Remote(name='ubuntu@smithi050.front.sepia.ceph.com')] 2024-09-17T00:10:48.904 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:10:48.906 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:10:48.986 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-09-17T00:10:49.064 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-09-17T00:10:49.065 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:10:49.065 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T00:10:49.142 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-17T00:10:49.221 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-17T00:10:49.222 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T00:10:49.235 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T00:10:49.235 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T00:10:49.236 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:10:49.238 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T00:10:49.238 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:10:49.266 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T00:10:49.281 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T00:10:49.293 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T00:10:49.306 INFO:teuthology.orchestra.run.smithi027.stderr:sudo: ntpd: command not found 2024-09-17T00:10:49.308 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T00:10:49.318 INFO:teuthology.orchestra.run.smithi027.stdout:506 Cannot talk to daemon 2024-09-17T00:10:49.332 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T00:10:49.335 INFO:teuthology.orchestra.run.smithi050.stderr:sudo: ntpd: command not found 2024-09-17T00:10:49.346 INFO:teuthology.orchestra.run.smithi050.stdout:506 Cannot talk to daemon 2024-09-17T00:10:49.347 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T00:10:49.361 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T00:10:49.375 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T00:10:49.404 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.408 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.433 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:10:49.437 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T00:10:49.448 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T00:10:49.449 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:10:49.449 DEBUG:teuthology.orchestra.run.smithi027:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T00:10:49.449 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi050.front.sepia.ceph.com 2024-09-17T00:10:49.450 DEBUG:teuthology.orchestra.run.smithi050:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T00:10:49.817 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout:Removing: 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout:Removing unused dependencies: 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T00:10:49.819 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout:Remove 2 Packages 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout:Freed space: 5.5 M 2024-09-17T00:10:49.820 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-09-17T00:10:49.824 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-09-17T00:10:49.824 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-09-17T00:10:49.844 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:Removing: 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:Removing unused dependencies: 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout:Remove 2 Packages 2024-09-17T00:10:49.853 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:49.854 INFO:teuthology.orchestra.run.smithi050.stdout:Freed space: 5.5 M 2024-09-17T00:10:49.854 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-17T00:10:49.857 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-17T00:10:49.857 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-17T00:10:49.895 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-09-17T00:10:49.895 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-09-17T00:10:49.923 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-17T00:10:49.923 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-17T00:10:50.027 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-09-17T00:10:50.070 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-17T00:10:50.098 INFO:teuthology.orchestra.run.smithi027.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T00:10:50.150 INFO:teuthology.orchestra.run.smithi050.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T00:10:50.158 INFO:teuthology.orchestra.run.smithi027.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T00:10:50.205 INFO:teuthology.orchestra.run.smithi050.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T00:10:50.626 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T00:10:50.626 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T00:10:50.696 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T00:10:50.696 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T00:10:50.881 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T00:10:50.882 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:50.882 INFO:teuthology.orchestra.run.smithi027.stdout:Removed: 2024-09-17T00:10:50.882 INFO:teuthology.orchestra.run.smithi027.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T00:10:50.882 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:50.882 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-09-17T00:10:51.036 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T00:10:51.036 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:51.036 INFO:teuthology.orchestra.run.smithi050.stdout:Removed: 2024-09-17T00:10:51.037 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T00:10:51.037 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:51.037 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-17T00:10:51.823 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 12:10:02 AM UTC. 2024-09-17T00:10:51.920 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 12:10:02 AM UTC. 2024-09-17T00:10:51.961 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T00:10:51.962 INFO:teuthology.orchestra.run.smithi027.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T00:10:51.963 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:51.963 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-09-17T00:10:51.963 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:10:51.963 INFO:teuthology.orchestra.run.smithi027.stdout:Install 6 Packages 2024-09-17T00:10:51.963 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:51.978 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 2.0 M 2024-09-17T00:10:51.979 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 9.2 M 2024-09-17T00:10:51.979 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-09-17T00:10:52.059 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T00:10:52.060 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout:Install 6 Packages 2024-09-17T00:10:52.061 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:52.073 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 2.0 M 2024-09-17T00:10:52.073 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 9.2 M 2024-09-17T00:10:52.073 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-09-17T00:10:52.226 INFO:teuthology.orchestra.run.smithi050.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 442 kB/s | 44 kB 00:00 2024-09-17T00:10:52.251 INFO:teuthology.orchestra.run.smithi050.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 842 kB/s | 106 kB 00:00 2024-09-17T00:10:52.292 INFO:teuthology.orchestra.run.smithi050.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.0 MB/s | 72 kB 00:00 2024-09-17T00:10:52.326 INFO:teuthology.orchestra.run.smithi050.stdout:(4/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.4 MB/s | 906 kB 00:00 2024-09-17T00:10:52.360 INFO:teuthology.orchestra.run.smithi050.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 774 kB/s | 84 kB 00:00 2024-09-17T00:10:52.378 INFO:teuthology.orchestra.run.smithi027.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 378 kB/s | 44 kB 00:00 2024-09-17T00:10:52.403 INFO:teuthology.orchestra.run.smithi027.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 743 kB/s | 106 kB 00:00 2024-09-17T00:10:52.418 INFO:teuthology.orchestra.run.smithi050.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.5 MB/s | 837 kB 00:00 2024-09-17T00:10:52.419 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:10:52.419 INFO:teuthology.orchestra.run.smithi050.stdout:Total 5.8 MB/s | 2.0 MB 00:00 2024-09-17T00:10:52.453 INFO:teuthology.orchestra.run.smithi027.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.6 MB/s | 84 kB 00:00 2024-09-17T00:10:52.478 INFO:teuthology.orchestra.run.smithi027.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 713 kB/s | 72 kB 00:00 2024-09-17T00:10:52.496 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-09-17T00:10:52.512 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-09-17T00:10:52.512 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-09-17T00:10:52.537 INFO:teuthology.orchestra.run.smithi027.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.2 MB/s | 906 kB 00:00 2024-09-17T00:10:52.687 INFO:teuthology.orchestra.run.smithi027.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 3.5 MB/s | 837 kB 00:00 2024-09-17T00:10:52.688 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:10:52.688 INFO:teuthology.orchestra.run.smithi027.stdout:Total 2.8 MB/s | 2.0 MB 00:00 2024-09-17T00:10:52.766 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-09-17T00:10:52.781 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-09-17T00:10:52.781 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-09-17T00:10:52.792 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-09-17T00:10:52.792 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-09-17T00:10:53.056 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-09-17T00:10:53.056 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-09-17T00:10:53.233 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-09-17T00:10:53.323 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T00:10:53.363 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T00:10:53.393 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T00:10:53.486 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-09-17T00:10:53.583 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T00:10:53.613 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T00:10:53.616 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T00:10:53.640 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T00:10:53.645 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T00:10:53.865 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T00:10:53.892 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T00:10:54.109 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T00:10:54.135 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T00:10:54.362 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T00:10:54.396 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T00:10:55.319 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T00:10:55.319 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T00:10:55.319 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T00:10:55.319 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T00:10:55.320 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T00:10:55.320 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T00:10:55.430 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T00:10:55.430 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T00:10:55.430 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T00:10:55.431 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T00:10:55.431 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T00:10:55.431 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T00:10:55.671 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T00:10:55.671 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:10:55.672 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T00:10:55.788 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:10:55.789 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-09-17T00:10:55.999 DEBUG:teuthology.parallel:result is None 2024-09-17T00:10:56.078 DEBUG:teuthology.parallel:result is None 2024-09-17T00:10:56.078 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-17T00:10:56.091 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-17T00:10:56.091 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:10:56.091 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:10:56.108 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-17T00:10:56.108 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_1 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:10:54.745015491 +0000 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.164 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.165 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.165 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T00:10:56.230 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:10:56.230 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:10:56.230 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000175278 s, 2.9 MB/s 2024-09-17T00:10:56.231 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T00:10:56.290 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_2 2024-09-17T00:10:56.346 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T00:10:56.346 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 980 Links: 1 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:10:54.746015242 +0000 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:54.490079028 +0000 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:54.490079028 +0000 2024-09-17T00:10:56.347 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:54.490079028 +0000 2024-09-17T00:10:56.348 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T00:10:56.411 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:10:56.411 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:10:56.411 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.00017535 s, 2.9 MB/s 2024-09-17T00:10:56.412 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T00:10:56.469 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_3 2024-09-17T00:10:56.525 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T00:10:56.525 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:56.525 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:10:54.746015242 +0000 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:54.491078779 +0000 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:54.491078779 +0000 2024-09-17T00:10:56.526 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:54.491078779 +0000 2024-09-17T00:10:56.526 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T00:10:56.590 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:10:56.590 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:10:56.590 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.00019646 s, 2.6 MB/s 2024-09-17T00:10:56.591 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T00:10:56.648 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_4 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:56.704 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:10:54.746015242 +0000 2024-09-17T00:10:56.705 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.705 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.705 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:54.488079527 +0000 2024-09-17T00:10:56.705 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T00:10:56.768 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:10:56.768 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:10:56.768 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000187719 s, 2.7 MB/s 2024-09-17T00:10:56.769 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T00:10:56.826 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:10:56.968 INFO:teuthology.orchestra.run.smithi027.stdout:loop 2024-09-17T00:10:56.970 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_1... 2024-09-17T00:10:56.971 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:10:57.006 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-09-17T00:10:57.042 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_11 2024-09-17T00:10:57.079 INFO:teuthology.orchestra.run.smithi027.stdout:connecting to device: nvme1 2024-09-17T00:10:57.081 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_2... 2024-09-17T00:10:57.081 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:10:57.155 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-09-17T00:10:57.193 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_21 2024-09-17T00:10:57.229 INFO:teuthology.orchestra.run.smithi027.stdout:connecting to device: nvme2 2024-09-17T00:10:57.231 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_3... 2024-09-17T00:10:57.232 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:10:57.309 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-09-17T00:10:57.341 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_31 2024-09-17T00:10:57.373 INFO:teuthology.orchestra.run.smithi027.stdout:connecting to device: nvme3 2024-09-17T00:10:57.375 INFO:tasks.nvme_loop:Connecting nvme_loop smithi027:/dev/vg_nvme/lv_4... 2024-09-17T00:10:57.376 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:10:57.454 INFO:teuthology.orchestra.run.smithi027.stdout:1 2024-09-17T00:10:57.486 INFO:teuthology.orchestra.run.smithi027.stdout:/dev/vg_nvme/lv_41 2024-09-17T00:10:57.520 INFO:teuthology.orchestra.run.smithi027.stdout:connecting to device: nvme4 2024-09-17T00:10:57.522 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:10:57.522 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:10:57.578 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme list -o json 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout:{ 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout: "Devices":[ 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout: { 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout: "NameSpace":1, 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T00:10:57.645 INFO:teuthology.orchestra.run.smithi027.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "SerialNumber":"64de4a7c5ad7ae78ae1e", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "SectorSize":512 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: }, 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: { 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "NameSpace":1, 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T00:10:57.646 INFO:teuthology.orchestra.run.smithi027.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "SerialNumber":"7c12789a21cf1d43c27c", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "SectorSize":512 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: }, 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: { 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "NameSpace":1, 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:57.647 INFO:teuthology.orchestra.run.smithi027.stdout: "SerialNumber":"335af928afb879c58ad2", 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "SectorSize":512 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: }, 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: { 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "NameSpace":1, 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:57.648 INFO:teuthology.orchestra.run.smithi027.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "SerialNumber":"7d465a72890efe4758b4", 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "SectorSize":512 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: }, 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: { 2024-09-17T00:10:57.649 INFO:teuthology.orchestra.run.smithi027.stdout: "NameSpace":1, 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "Firmware":"8DV101H0", 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "SerialNumber":"CVFT5331001C400BGN", 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "UsedBytes":400088457216, 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "MaximumLBA":781422768, 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "PhysicalSize":400088457216, 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: "SectorSize":512 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: } 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout: ] 2024-09-17T00:10:57.650 INFO:teuthology.orchestra.run.smithi027.stdout:} 2024-09-17T00:10:57.651 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T00:10:57.652 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:10:57.652 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/scratch_devs 2024-09-17T00:10:57.718 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:10:57.718 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:10:57.739 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-17T00:10:57.739 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-09-17T00:10:57.798 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T00:10:57.798 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:57.798 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 963 Links: 1 2024-09-17T00:10:57.798 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:57.798 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:57.799 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:10:54.599561411 +0000 2024-09-17T00:10:57.799 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:54.235560526 +0000 2024-09-17T00:10:57.799 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:54.235560526 +0000 2024-09-17T00:10:57.799 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:54.235560526 +0000 2024-09-17T00:10:57.799 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T00:10:57.869 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:10:57.869 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:10:57.869 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000114407 s, 4.5 MB/s 2024-09-17T00:10:57.870 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T00:10:57.930 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-09-17T00:10:57.987 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T00:10:57.987 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:57.987 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-17T00:10:57.987 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:57.987 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:57.988 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:10:54.599561411 +0000 2024-09-17T00:10:57.988 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:57.988 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:57.988 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:57.988 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T00:10:58.054 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:10:58.055 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:10:58.055 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.00010815 s, 4.7 MB/s 2024-09-17T00:10:58.056 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T00:10:58.114 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-09-17T00:10:58.171 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T00:10:58.171 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:58.171 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:10:54.600561413 +0000 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:54.236560529 +0000 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:54.236560529 +0000 2024-09-17T00:10:58.172 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:54.236560529 +0000 2024-09-17T00:10:58.172 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T00:10:58.237 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:10:58.240 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:10:58.240 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000102167 s, 5.0 MB/s 2024-09-17T00:10:58.241 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T00:10:58.299 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-09-17T00:10:58.356 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T00:10:58.356 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 979 Links: 1 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:10:54.600561413 +0000 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:58.357 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:54.237560531 +0000 2024-09-17T00:10:58.357 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T00:10:58.422 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:10:58.422 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:10:58.422 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000103531 s, 4.9 MB/s 2024-09-17T00:10:58.423 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T00:10:58.481 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:10:58.618 INFO:teuthology.orchestra.run.smithi050.stdout:loop 2024-09-17T00:10:58.619 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-09-17T00:10:58.619 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:10:58.653 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-17T00:10:58.684 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_11 2024-09-17T00:10:58.722 INFO:teuthology.orchestra.run.smithi050.stdout:connecting to device: nvme1 2024-09-17T00:10:58.724 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-09-17T00:10:58.725 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:10:58.800 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-17T00:10:58.835 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_21 2024-09-17T00:10:58.867 INFO:teuthology.orchestra.run.smithi050.stdout:connecting to device: nvme2 2024-09-17T00:10:58.869 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-09-17T00:10:58.869 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:10:58.942 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-17T00:10:58.974 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_31 2024-09-17T00:10:59.006 INFO:teuthology.orchestra.run.smithi050.stdout:connecting to device: nvme3 2024-09-17T00:10:59.008 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-09-17T00:10:59.008 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:10:59.085 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-17T00:10:59.118 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_41 2024-09-17T00:10:59.149 INFO:teuthology.orchestra.run.smithi050.stdout:connecting to device: nvme4 2024-09-17T00:10:59.151 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:10:59.151 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:10:59.206 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme list -o json 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "Devices":[ 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "NameSpace":1, 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:59.281 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber":"8b9ffa9139ee1262943d", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "SectorSize":512 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "NameSpace":1, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber":"e8bdc45bb0012c1c1a42", 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:59.282 INFO:teuthology.orchestra.run.smithi050.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "SectorSize":512 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "NameSpace":1, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber":"6e5d80e7da345e160ab5", 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:59.283 INFO:teuthology.orchestra.run.smithi050.stdout: "SectorSize":512 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "NameSpace":1, 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware":"5.14.0-5", 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber":"Linux", 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber":"7af83f932fc4aeffc30a", 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "UsedBytes":95995035648, 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "MaximumLBA":187490304, 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "PhysicalSize":95995035648, 2024-09-17T00:10:59.284 INFO:teuthology.orchestra.run.smithi050.stdout: "SectorSize":512 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "NameSpace":1, 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware":"E2010325", 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber":"INTEL SSDPED1D480GA", 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber":"PHMB7513001F480DGN", 2024-09-17T00:10:59.285 INFO:teuthology.orchestra.run.smithi050.stdout: "UsedBytes":480103981056, 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout: "MaximumLBA":937703088, 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout: "PhysicalSize":480103981056, 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout: "SectorSize":512 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout: } 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-09-17T00:10:59.286 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-17T00:10:59.287 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T00:10:59.287 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:10:59.287 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-09-17T00:10:59.354 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T00:10:59.445 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\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f'} 2024-09-17T00:10:59.445 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T00:10:59.445 INFO:tasks.cephadm:Cluster fsid is 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:10:59.445 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T00:10:59.446 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-17T00:10:59.446 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi027': '172.21.15.27', 'mon.smithi050': '172.21.15.50'} 2024-09-17T00:10:59.446 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T00:10:59.446 DEBUG:teuthology.orchestra.run.smithi027:> sudo hostname $(hostname -s) 2024-09-17T00:10:59.478 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-09-17T00:10:59.504 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T00:10:59.505 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T00:10:59.648 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'c2ddf9721ef254645201cdbabd9c8f49c30a586f', '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/56092/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.1.1-330-gc2ddf972', 'node_name': '172.21.5.35+adami05', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.1.1-330.gc2ddf972'}, 'url': 'https://2.chacra.ceph.com/r/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-16 16:11:17.578068', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T00:10:59.787 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref squid, sha1 c2ddf9721ef254645201cdbabd9c8f49c30a586f from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T00:10:59.788 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm 2024-09-17T00:10:59.788 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm 2024-09-17T00:10:59.788 DEBUG:teuthology.orchestra.run.smithi027:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.161 INFO:teuthology.orchestra.run.smithi027.stdout:-rw-r--r--. 1 ubuntu ubuntu 784439 Sep 17 00:11 /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.162 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/squid/c2ddf9721ef254645201cdbabd9c8f49c30a586f/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.543 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-r--r--. 1 ubuntu ubuntu 784439 Sep 17 00:11 /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.543 DEBUG:teuthology.orchestra.run.smithi027:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.564 DEBUG:teuthology.orchestra.run.smithi050:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T00:11:00.594 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f on all hosts... 2024-09-17T00:11:00.594 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-17T00:11:00.607 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f pull 2024-09-17T00:11:02.178 INFO:teuthology.orchestra.run.smithi027.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T00:11:02.242 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T00:11:33.578 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-17T00:11:33.578 INFO:teuthology.orchestra.run.smithi050.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-17T00:11:33.579 INFO:teuthology.orchestra.run.smithi050.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-17T00:11:33.579 INFO:teuthology.orchestra.run.smithi050.stdout: "repo_digests": [ 2024-09-17T00:11:33.579 INFO:teuthology.orchestra.run.smithi050.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-17T00:11:33.579 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-09-17T00:11:33.579 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout:{ 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout: "ceph_version": "ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable)", 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout: "image_id": "ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b", 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout: "repo_digests": [ 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3" 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout: ] 2024-09-17T00:12:08.078 INFO:teuthology.orchestra.run.smithi027.stdout:} 2024-09-17T00:12:08.104 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /etc/ceph 2024-09-17T00:12:08.152 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /etc/ceph 2024-09-17T00:12:08.186 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 777 /etc/ceph 2024-09-17T00:12:08.212 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 777 /etc/ceph 2024-09-17T00:12:08.256 INFO:tasks.cephadm:Writing seed config... 2024-09-17T00:12:08.257 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T00:12:08.257 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T00:12:08.257 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T00:12:08.258 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T00:12:08.258 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T00:12:08.258 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T00:12:08.258 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T00:12:08.258 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-17T00:12:08.259 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:12:08.259 DEBUG:teuthology.orchestra.run.smithi027:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T00:12:08.274 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 = 5142ec4a-7489-11ef-bceb-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-09-17T00:12:08.275 DEBUG:teuthology.orchestra.run.smithi027:mon.smithi027> sudo journalctl -f -n 0 -u ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service 2024-09-17T00:12:08.317 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T00:12:08.317 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f -v bootstrap --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.27 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:12:08.526 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:12:08.526 INFO:teuthology.orchestra.run.smithi027.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f', '-v', 'bootstrap', '--fsid', '5142ec4a-7489-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.27', '--skip-admin-label'] 2024-09-17T00:12:08.526 INFO:teuthology.orchestra.run.smithi027.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T00:12:08.526 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying podman|docker is present... 2024-09-17T00:12:08.550 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stdout 5.2.2 2024-09-17T00:12:08.550 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying lvm2 is present... 2024-09-17T00:12:08.550 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying time synchronization is in place... 2024-09-17T00:12:08.557 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T00:12:08.558 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T00:12:08.564 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T00:12:08.564 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:12:08.571 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout enabled 2024-09-17T00:12:08.577 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout active 2024-09-17T00:12:08.578 INFO:teuthology.orchestra.run.smithi027.stdout:Unit chronyd.service is enabled and running 2024-09-17T00:12:08.578 INFO:teuthology.orchestra.run.smithi027.stdout:Repeating the final host check... 2024-09-17T00:12:08.600 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stdout 5.2.2 2024-09-17T00:12:08.600 INFO:teuthology.orchestra.run.smithi027.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T00:12:08.600 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl is present 2024-09-17T00:12:08.600 INFO:teuthology.orchestra.run.smithi027.stdout:lvcreate is present 2024-09-17T00:12:08.606 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T00:12:08.606 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T00:12:08.613 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T00:12:08.613 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:12:08.620 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout enabled 2024-09-17T00:12:08.628 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout active 2024-09-17T00:12:08.628 INFO:teuthology.orchestra.run.smithi027.stdout:Unit chronyd.service is enabled and running 2024-09-17T00:12:08.628 INFO:teuthology.orchestra.run.smithi027.stdout:Host looks OK 2024-09-17T00:12:08.628 INFO:teuthology.orchestra.run.smithi027.stdout:Cluster fsid: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:08.629 INFO:teuthology.orchestra.run.smithi027.stdout:Acquiring lock 139988275518528 on /run/cephadm/5142ec4a-7489-11ef-bceb-c7b262605968.lock 2024-09-17T00:12:08.629 INFO:teuthology.orchestra.run.smithi027.stdout:Lock 139988275518528 acquired on /run/cephadm/5142ec4a-7489-11ef-bceb-c7b262605968.lock 2024-09-17T00:12:08.629 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying IP 172.21.15.27 port 3300 ... 2024-09-17T00:12:08.629 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying IP 172.21.15.27 port 6789 ... 2024-09-17T00:12:08.629 INFO:teuthology.orchestra.run.smithi027.stdout:Base mon IP(s) is [172.21.15.27:3300, 172.21.15.27:6789], mon addrv is [v2:172.21.15.27:3300,v1:172.21.15.27:6789] 2024-09-17T00:12:08.631 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.27 metric 100 2024-09-17T00:12:08.631 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.27 metric 100 2024-09-17T00:12:08.634 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T00:12:08.634 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-17T00:12:08.634 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1794sec hoplimit 64 pref medium 2024-09-17T00:12:08.639 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T00:12:08.640 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T00:12:08.640 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T00:12:08.640 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-17T00:12:08.641 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout inet6 fe80::ae1f:6bff:fef8:395a/64 scope link 2024-09-17T00:12:08.641 INFO:teuthology.orchestra.run.smithi027.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T00:12:08.641 INFO:teuthology.orchestra.run.smithi027.stdout:Mon IP `172.21.15.27` is in CIDR network `172.21.0.0/20` 2024-09-17T00:12:08.641 INFO:teuthology.orchestra.run.smithi027.stdout:Mon IP `172.21.15.27` is in CIDR network `172.21.0.0/20` 2024-09-17T00:12:08.641 INFO:teuthology.orchestra.run.smithi027.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T00:12:08.642 INFO:teuthology.orchestra.run.smithi027.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T00:12:08.642 INFO:teuthology.orchestra.run.smithi027.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T00:12:09.155 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stdout ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b 2024-09-17T00:12:09.155 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f... 2024-09-17T00:12:09.155 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T00:12:09.156 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Copying blob sha256:83d928f919f2c1e0c1bd6bccd6df0f26dec4d40362b4c5deccad70d7b002219d 2024-09-17T00:12:09.156 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T00:12:09.156 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Copying config sha256:ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b 2024-09-17T00:12:09.156 INFO:teuthology.orchestra.run.smithi027.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T00:12:10.060 INFO:teuthology.orchestra.run.smithi027.stdout:ceph: stdout ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-17T00:12:10.060 INFO:teuthology.orchestra.run.smithi027.stdout:Ceph version: ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable) 2024-09-17T00:12:10.060 INFO:teuthology.orchestra.run.smithi027.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T00:12:11.040 INFO:teuthology.orchestra.run.smithi027.stdout:stat: stdout 167 167 2024-09-17T00:12:11.040 INFO:teuthology.orchestra.run.smithi027.stdout:Creating initial keys... 2024-09-17T00:12:12.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph-authtool: stdout AQBbyehmLAyAFRAAf8NJJ9JO0EM/P2GM7TRheA== 2024-09-17T00:12:13.686 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph-authtool: stdout AQBcyehmcxTIHRAAdR1wA83vEuISBaJFVJ8Vyw== 2024-09-17T00:12:22.633 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph-authtool: stdout AQBgyehmBKqnJRAAYwc5/vVDg26/S9e3VvCeHg== 2024-09-17T00:12:22.634 INFO:teuthology.orchestra.run.smithi027.stdout:Creating initial monmap... 2024-09-17T00:12:23.538 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:monmaptool for smithi027 [v2:172.21.15.27:3300,v1:172.21.15.27:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:setting min_mon_release = quincy 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: set fsid to 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:12:23.539 INFO:teuthology.orchestra.run.smithi027.stdout:Creating mon... 2024-09-17T00:12:24.494 INFO:teuthology.orchestra.run.smithi027.stdout:create mon.smithi027 on 2024-09-17T00:12:24.922 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T00:12:25.119 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target. 2024-09-17T00:12:25.120 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target. 2024-09-17T00:12:25.375 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027 2024-09-17T00:12:25.375 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Failed to reset failed state of unit ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service: Unit ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service not loaded. 2024-09-17T00:12:25.554 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target.wants/ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service → /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968@.service. 2024-09-17T00:12:26.065 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:26 smithi027 podman[25083]: 2024-09-17 00:12:26.027535855 +0000 UTC m=+0.350401038 container start 38044d5558d4b10d11d1dedf3bd041121721424edd2e0a11af5805519cc68c8f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-17T00:12:26.109 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T00:12:26.109 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout disabled 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:firewalld.service is not enabled 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mon to start... 2024-09-17T00:12:26.117 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mon... 2024-09-17T00:12:26.323 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:26 smithi027 ceph-mon[25102]: mkfs 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:26.323 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:26 smithi027 ceph-mon[25102]: mon.smithi027 is new leader, mons smithi027 in quorum (ranks 0) 2024-09-17T00:12:26.323 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:26 smithi027 bash[25083]: 38044d5558d4b10d11d1dedf3bd041121721424edd2e0a11af5805519cc68c8f 2024-09-17T00:12:26.323 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:26 smithi027 systemd[1]: Started Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968. 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout id: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout services: 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi027 (age 0.520007s) 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T00:12:27.073 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout data: 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:mon is available 2024-09-17T00:12:27.074 INFO:teuthology.orchestra.run.smithi027.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T00:12:27.380 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: mon.smithi027 is new leader, mons smithi027 in quorum (ranks 0) 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: monmap epoch 1 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: last_changed 2024-09-17T00:12:22.944274+0000 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: created 2024-09-17T00:12:22.944274+0000 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: min_mon_release 19 (squid) 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: election_strategy: 1 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: 0: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.smithi027 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: fsmap 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: mgrmap e1: no daemons active 2024-09-17T00:12:27.381 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:27 smithi027 ceph-mon[25102]: from='client.? 172.21.15.27:0/829419709' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T00:12:28.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:28 smithi027 ceph-mon[25102]: from='client.? 172.21.15.27:0/765018552' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T00:12:28.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:28 smithi027 ceph-mon[25102]: from='client.? 172.21.15.27:0/765018552' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout fsid = 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.27:3300,v1:172.21.15.27:6789] 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T00:12:29.620 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T00:12:29.621 INFO:teuthology.orchestra.run.smithi027.stdout:Generating new minimal ceph.conf... 2024-09-17T00:12:30.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:30 smithi027 ceph-mon[25102]: from='client.? 172.21.15.27:0/1023163899' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:12:30.632 INFO:teuthology.orchestra.run.smithi027.stdout:Restarting the monitor... 2024-09-17T00:12:30.900 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:30 smithi027 systemd[1]: Stopping Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968... 2024-09-17T00:12:31.242 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:30 smithi027 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027[25098]: 2024-09-17T00:12:30.903+0000 7f2c77292640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi027 -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-09-17T00:12:31.242 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:30 smithi027 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027[25098]: 2024-09-17T00:12:30.903+0000 7f2c77292640 -1 mon.smithi027@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T00:12:31.243 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 podman[25343]: 2024-09-17 00:12:31.036348195 +0000 UTC m=+0.231498290 container died 38044d5558d4b10d11d1dedf3bd041121721424edd2e0a11af5805519cc68c8f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=squid-c2ddf97, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux ) 2024-09-17T00:12:31.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 podman[25343]: 2024-09-17 00:12:31.327385909 +0000 UTC m=+0.522535996 container cleanup 38044d5558d4b10d11d1dedf3bd041121721424edd2e0a11af5805519cc68c8f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-17T00:12:31.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 bash[25343]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027 2024-09-17T00:12:31.949 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 podman[25355]: 2024-09-17 00:12:31.578379467 +0000 UTC m=+0.538379802 container remove 38044d5558d4b10d11d1dedf3bd041121721424edd2e0a11af5805519cc68c8f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T00:12:31.950 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 systemd[1]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service: Deactivated successfully. 2024-09-17T00:12:31.950 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 systemd[1]: Stopped Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968. 2024-09-17T00:12:31.950 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 systemd[1]: Starting Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968... 2024-09-17T00:12:32.211 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 podman[25447]: 2024-09-17 00:12:31.855846531 +0000 UTC m=+0.016324751 image pull ebb0615149def4a3179c82c0cc47af75808300abb9f1142788e5e605a7ac0e5b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f 2024-09-17T00:12:32.212 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:31 smithi027 podman[25447]: 2024-09-17 00:12:31.973248159 +0000 UTC m=+0.133726363 container create a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , RELEASE=squid-c2ddf97, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T00:12:32.212 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 podman[25447]: 2024-09-17 00:12:32.190076824 +0000 UTC m=+0.350555043 container init a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, ceph=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0) 2024-09-17T00:12:32.212 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 podman[25447]: 2024-09-17 00:12:32.193312686 +0000 UTC m=+0.353790888 container start a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T00:12:32.299 INFO:teuthology.orchestra.run.smithi027.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T00:12:32.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T00:12:32.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: ceph version 19.1.1-330-gc2ddf972 (c2ddf9721ef254645201cdbabd9c8f49c30a586f) squid (stable), process ceph-mon, pid 2 2024-09-17T00:12:32.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: pidfile_write: ignore empty --pid-file 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: load: jerasure load: lrc 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: RocksDB version: 7.9.2 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Git sha 0 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Compile date 2024-09-16 15:09:42 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: DB SUMMARY 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: DB Session ID: EY8DN5ZHKZEX4NNUTHVX 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: CURRENT file: CURRENT 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi027/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi027/store.db: 000009.log size: 89049 ; 2024-09-17T00:12:32.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.error_if_exists: 0 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.create_if_missing: 0 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.paranoid_checks: 1 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.env: 0x558ec75cf940 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.info_log: 0x558ec9ab98c0 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.statistics: (nil) 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.use_fsync: 0 2024-09-17T00:12:32.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_log_file_size: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_fallocate: 1 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.use_direct_reads: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.db_log_dir: 2024-09-17T00:12:32.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.wal_dir: 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.write_buffer_manager: 0x558ec9ac8dc0 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T00:12:32.537 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.unordered_write: 0 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.row_cache: None 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.wal_filter: None 2024-09-17T00:12:32.538 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.two_write_queues: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.wal_compression: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.atomic_flush: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.log_readahead_size: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T00:12:32.539 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_background_jobs: 2 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_background_compactions: -1 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_subcompactions: 1 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T00:12:32.540 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_open_files: -1 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_background_flushes: -1 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Compression algorithms supported: 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kZSTD supported: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kXpressCompression supported: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kBZip2Compression supported: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T00:12:32.541 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kLZ4Compression supported: 1 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kZlibCompression supported: 1 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: kSnappyCompression supported: 1 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi027/store.db/MANIFEST-000010 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.merge_operator: 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_filter: None 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T00:12:32.542 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x558ec9ab9520) 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: cache_index_and_filter_blocks: 1 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: pin_top_level_index_and_filter: 1 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: index_type: 0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: data_block_index_type: 0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: index_shortening: 1 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: checksum: 4 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: no_block_cache: 0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_cache: 0x558ec9aad1f0 2024-09-17T00:12:32.543 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_cache_name: BinnedLRUCache 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_cache_options: 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: capacity : 536870912 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: num_shard_bits : 4 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: strict_capacity_limit : 0 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: high_pri_pool_ratio: 0.000 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_cache_compressed: (nil) 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: persistent_cache: (nil) 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_size: 4096 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_size_deviation: 10 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_restart_interval: 16 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: index_block_restart_interval: 1 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: metadata_block_size: 4096 2024-09-17T00:12:32.544 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: partition_filters: 0 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: use_delta_encoding: 1 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: filter_policy: bloomfilter 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: whole_key_filtering: 1 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: verify_compression: 0 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: read_amp_bytes_per_bit: 0 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: format_version: 5 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: enable_index_compression: 1 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: block_align: 0 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: max_auto_readahead_size: 262144 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: prepopulate_block_cache: 0 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: initial_auto_readahead_size: 8192 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T00:12:32.545 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression: NoCompression 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.num_levels: 7 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T00:12:32.546 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T00:12:32.547 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T00:12:32.547 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T00:12:32.547 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T00:12:32.548 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T00:12:32.549 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T00:12:32.550 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.inplace_update_support: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.bloom_locality: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.max_successive_merges: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T00:12:32.551 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.ttl: 2592000 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enable_blob_files: false 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.min_blob_size: 0 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T00:12:32.552 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi027/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: c572874c-b39a-42f9-b7e2-04b1ad7b2d63 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726531952220248, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726531952221198, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85775, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 256, "table_properties": {"data_size": 83922, "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": 78153, "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": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726531952, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "c572874c-b39a-42f9-b7e2-04b1ad7b2d63", "db_session_id": "EY8DN5ZHKZEX4NNUTHVX", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726531952221272, "job": 1, "event": "recovery_finished"} 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T00:12:32.553 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi027/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x558ec9adae00 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: DB pointer 0x558ec9bd6000 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ** DB Stats ** 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.554 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ** Compaction Stats [default] ** 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: L0 2/0 85.66 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Sum 2/0 85.66 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.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 132.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ** Compaction Stats [default] ** 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.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 132.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T00:12:32.555 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Cumulative compaction: 0.00 GB write, 14.81 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Interval compaction: 0.00 GB write, 14.81 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.556 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Block cache BinnedLRUCache@0x558ec9aad1f0#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: starting mon.smithi027 rank 0 at public addrs [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] at bind addrs [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi027 fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???) e1 preinit fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).mds e1 new map 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).mds e1 print_map 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: e1 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: btime 2024-09-17T00:12:26:066053+0000 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.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-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: legacy client fscid: -1 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: 2024-09-17T00:12:32.557 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: No filesystems configured 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mon.smithi027 is new leader, mons smithi027 in quorum (ranks 0) 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: monmap epoch 1 2024-09-17T00:12:32.558 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: last_changed 2024-09-17T00:12:22.944274+0000 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: created 2024-09-17T00:12:22.944274+0000 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: min_mon_release 19 (squid) 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: election_strategy: 1 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: 0: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.smithi027 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: fsmap 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 ceph-mon[25467]: mgrmap e1: no daemons active 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 bash[25447]: a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 2024-09-17T00:12:32.559 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:32 smithi027 systemd[1]: Started Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968. 2024-09-17T00:12:33.446 INFO:teuthology.orchestra.run.smithi027.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T00:12:33.468 INFO:teuthology.orchestra.run.smithi027.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:12:33.468 INFO:teuthology.orchestra.run.smithi027.stdout:Creating mgr... 2024-09-17T00:12:33.468 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T00:12:33.469 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T00:12:33.469 INFO:teuthology.orchestra.run.smithi027.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-17T00:12:33.748 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mgr.smithi027.paiqzz 2024-09-17T00:12:33.748 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Failed to reset failed state of unit ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mgr.smithi027.paiqzz.service: Unit ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mgr.smithi027.paiqzz.service not loaded. 2024-09-17T00:12:33.903 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968.target.wants/ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mgr.smithi027.paiqzz.service → /etc/systemd/system/ceph-5142ec4a-7489-11ef-bceb-c7b262605968@.service. 2024-09-17T00:12:34.170 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:33 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1800172171' entity='client.admin' 2024-09-17T00:12:34.479 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T00:12:34.479 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout disabled 2024-09-17T00:12:34.486 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T00:12:34.486 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:12:34.486 INFO:teuthology.orchestra.run.smithi027.stdout:firewalld.service is not enabled 2024-09-17T00:12:34.486 INFO:teuthology.orchestra.run.smithi027.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T00:12:34.496 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T00:12:34.496 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout disabled 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:firewalld.service is not enabled 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mgr to start... 2024-09-17T00:12:34.503 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mgr... 2024-09-17T00:12:35.612 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:35 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/993355429' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T00:12:35.913 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:35.913 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:12:35.913 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsid": "5142ec4a-7489-11ef-bceb-c7b262605968", 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 0 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "smithi027" 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-17T00:12:35.914 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.915 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T00:12:26:066053+0000", 2024-09-17T00:12:35.916 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.917 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T00:12:26.066872+0000", 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:12:35.918 INFO:teuthology.orchestra.run.smithi027.stdout:mgr not available, waiting (1/15)... 2024-09-17T00:12:38.612 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:38 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4184556760' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsid": "5142ec4a-7489-11ef-bceb-c7b262605968", 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T00:12:38.949 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 0 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "smithi027" 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T00:12:38.950 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T00:12:38.951 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T00:12:38.954 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T00:12:26:066053+0000", 2024-09-17T00:12:38.955 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:38.956 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T00:12:26.066872+0000", 2024-09-17T00:12:38.957 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:38.957 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:38.957 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T00:12:38.957 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:12:38.957 INFO:teuthology.orchestra.run.smithi027.stdout:mgr not available, waiting (2/15)... 2024-09-17T00:12:39.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: Activating manager daemon smithi027.paiqzz 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: mgrmap e2: smithi027.paiqzz(active, starting, since 0.00328615s) 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi027.paiqzz", "id": "smithi027.paiqzz"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: Manager daemon smithi027.paiqzz is now available 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/mirror_snapshot_schedule"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/trash_purge_schedule"}]: dispatch 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:39.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:39 smithi027 ceph-mon[25467]: from='mgr.14100 172.21.15.27:0/818585331' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:41.596 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:41 smithi027 ceph-mon[25467]: mgrmap e3: smithi027.paiqzz(active, since 1.00782s) 2024-09-17T00:12:42.167 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:42.167 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:12:42.167 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsid": "5142ec4a-7489-11ef-bceb-c7b262605968", 2024-09-17T00:12:42.167 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 0 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "smithi027" 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-09-17T00:12:42.168 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.169 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T00:12:26:066053+0000", 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T00:12:42.170 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ], 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T00:12:42.171 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T00:12:26.066872+0000", 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout }, 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:12:42.172 INFO:teuthology.orchestra.run.smithi027.stdout:mgr is available 2024-09-17T00:12:42.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:42 smithi027 ceph-mon[25467]: mgrmap e4: smithi027.paiqzz(active, since 2s) 2024-09-17T00:12:42.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:42 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1135494476' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T00:12:43.277 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:43.277 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T00:12:43.277 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout fsid = 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.27:3300,v1:172.21.15.27:6789] 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T00:12:43.278 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T00:12:43.279 INFO:teuthology.orchestra.run.smithi027.stdout:Enabling cephadm module... 2024-09-17T00:12:43.676 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:43 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1279826466' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T00:12:44.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:44 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2967209338' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T00:12:45.587 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:45 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2967209338' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T00:12:45.587 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:45 smithi027 ceph-mon[25467]: mgrmap e5: smithi027.paiqzz(active, since 5s) 2024-09-17T00:12:46.314 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:12:46.314 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T00:12:46.314 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T00:12:46.315 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "active_name": "smithi027.paiqzz", 2024-09-17T00:12:46.315 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T00:12:46.315 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:12:46.315 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for the mgr to restart... 2024-09-17T00:12:46.315 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mgr epoch 5... 2024-09-17T00:12:46.613 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:46 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2768219945' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T00:12:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: Active manager daemon smithi027.paiqzz restarted 2024-09-17T00:12:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: Activating manager daemon smithi027.paiqzz 2024-09-17T00:12:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: mgrmap e6: smithi027.paiqzz(active, starting, since 0.00379164s) 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi027.paiqzz", "id": "smithi027.paiqzz"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: Manager daemon smithi027.paiqzz is now available 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/mirror_snapshot_schedule"}]: dispatch 2024-09-17T00:12:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:49 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/trash_purge_schedule"}]: dispatch 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:mgr epoch 5 is available 2024-09-17T00:12:51.078 INFO:teuthology.orchestra.run.smithi027.stdout:Setting orchestrator backend to cephadm... 2024-09-17T00:12:51.687 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:51 smithi027 ceph-mon[25467]: Found migration_current of "None". Setting to last migration. 2024-09-17T00:12:51.687 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:51 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:51.687 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:51 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:51.688 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:51 smithi027 ceph-mon[25467]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T00:12:51.688 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:51 smithi027 ceph-mon[25467]: mgrmap e7: smithi027.paiqzz(active, since 1.00509s) 2024-09-17T00:12:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:52 smithi027 ceph-mon[25467]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T00:12:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:52 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:52 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:12:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:52 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:12:53.454 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: [17/Sep/2024:00:12:51] ENGINE Bus STARTING 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: [17/Sep/2024:00:12:51] ENGINE Serving on http://172.21.15.27:8765 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: [17/Sep/2024:00:12:51] ENGINE Serving on https://172.21.15.27:7150 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: [17/Sep/2024:00:12:51] ENGINE Bus STARTED 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: [17/Sep/2024:00:12:51] ENGINE Error in HTTPServer.serve 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Traceback (most recent call last): 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._connections.run(self.expiration_interval) 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._run(expiration_interval) 2024-09-17T00:12:53.455 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s = self.context.wrap_socket( 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: return self.sslsocket_class._create( 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self.do_handshake() 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._sslobj.do_handshake() 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T00:12:53.456 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:53 smithi027 ceph-mon[25467]: mgrmap e8: smithi027.paiqzz(active, since 2s) 2024-09-17T00:12:53.457 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T00:12:53.457 INFO:teuthology.orchestra.run.smithi027.stdout:Generating ssh key... 2024-09-17T00:12:54.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:54 smithi027 ceph-mon[25467]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:12:55.447 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:55 smithi027 ceph-mon[25467]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:12:55.447 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:55 smithi027 ceph-mon[25467]: Generating ssh key... 2024-09-17T00:12:55.447 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:55 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:55.447 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:55 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:12:56.303 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5lgVElLMRpz+mYInzKIK18SKJ2nplPU4d1phVUxfLWthcIF4TjX9FTfCcb/+xlpIy5wXpgJbbtaaBcN+0BmcCVRmYre18MqzaD/e/v3O73Pde6HKZd7Ohc3jmKispCCmnM3ge6pzbhZekyg6CFXnO2bY7KQ8XOSzA+xvQkbFxhK/NCJJsYwID5ZIPeE1i/EfzgycyvNNO2k7ip56/mnasvulGpT1upYN4m6cuWdlWFTGx4VJFkHB+RSuZG0HUovSAzbxaQWA4gMZXzCgdP0MYzVwimzO2C3AxdVJBXGGlWLZFvTnyB8XLSNrhcLCt40vHAP7tbKTf2jJt3C1wbz5tqTloWnEQJ9y6jHK8rpNAq5WOKfXDielS8KAUg1KqyR8lM323YWvu7xYrb7/JaQvrCGt27PfJuqJQop2nju8ZtC5ZvYaIZEdhqs3VazNt6W58w6/FwVppa3k5uGfZ76eyO7jtRpxLP+A4IIMCyOfOjLsMUuajBQyBGwqE41xT3Xs= ceph-5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:12:56.304 INFO:teuthology.orchestra.run.smithi027.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T00:12:56.304 INFO:teuthology.orchestra.run.smithi027.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T00:12:56.311 INFO:teuthology.orchestra.run.smithi027.stdout:Adding host smithi027... 2024-09-17T00:12:57.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:56 smithi027 ceph-mon[25467]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:12:57.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:57 smithi027 ceph-mon[25467]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi027", "addr": "172.21.15.27", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:12:58.889 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:12:58 smithi027 ceph-mon[25467]: Deploying cephadm binary to smithi027 2024-09-17T00:13:01.494 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Added host 'smithi027' with addr '172.21.15.27' 2024-09-17T00:13:01.494 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying mon service with default placement... 2024-09-17T00:13:02.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:01 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:02.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:01 smithi027 ceph-mon[25467]: Added host smithi027 2024-09-17T00:13:02.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:01 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:13:02.737 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T00:13:02.737 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying mgr service with default placement... 2024-09-17T00:13:03.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:03 smithi027 ceph-mon[25467]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:03.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:03 smithi027 ceph-mon[25467]: Saving service mon spec with placement count:5 2024-09-17T00:13:03.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:03 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:04.688 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:04 smithi027 ceph-mon[25467]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:04.688 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:04 smithi027 ceph-mon[25467]: Saving service mgr spec with placement count:2 2024-09-17T00:13:04.689 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:04 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:04.689 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:04 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:04.690 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T00:13:04.691 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying crash service with default placement... 2024-09-17T00:13:05.924 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-17T00:13:05.924 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying ceph-exporter service with default placement... 2024-09-17T00:13:06.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:06 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:06.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:06 smithi027 ceph-mon[25467]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:06.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:06 smithi027 ceph-mon[25467]: Saving service crash spec with placement * 2024-09-17T00:13:06.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:06 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:07.631 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:07 smithi027 ceph-mon[25467]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:07.631 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:07 smithi027 ceph-mon[25467]: Saving service ceph-exporter spec with placement * 2024-09-17T00:13:07.631 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:07 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:07.633 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-17T00:13:07.633 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying prometheus service with default placement... 2024-09-17T00:13:08.898 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-17T00:13:08.899 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying grafana service with default placement... 2024-09-17T00:13:09.149 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:09 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:09.149 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:09 smithi027 ceph-mon[25467]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:09.149 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:09 smithi027 ceph-mon[25467]: Saving service prometheus spec with placement count:1 2024-09-17T00:13:09.149 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:09 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:09.149 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:09 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:10.215 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-17T00:13:10.215 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying node-exporter service with default placement... 2024-09-17T00:13:10.758 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:10 smithi027 ceph-mon[25467]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:10.758 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:10 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:11.691 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:11 smithi027 ceph-mon[25467]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:11.691 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:11 smithi027 ceph-mon[25467]: Saving service grafana spec with placement count:1 2024-09-17T00:13:12.275 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-17T00:13:12.276 INFO:teuthology.orchestra.run.smithi027.stdout:Deploying alertmanager service with default placement... 2024-09-17T00:13:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:12 smithi027 ceph-mon[25467]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:12 smithi027 ceph-mon[25467]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:12 smithi027 ceph-mon[25467]: Saving service node-exporter spec with placement * 2024-09-17T00:13:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:12 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:13.415 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-17T00:13:14.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:13 smithi027 ceph-mon[25467]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:14.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:13 smithi027 ceph-mon[25467]: Saving service alertmanager spec with placement count:1 2024-09-17T00:13:14.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:13 smithi027 ceph-mon[25467]: from='mgr.14118 172.21.15.27:0/1099241882' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:14.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:13 smithi027 ceph-mon[25467]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:15.151 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:15 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/155532616' entity='client.admin' 2024-09-17T00:13:15.835 INFO:teuthology.orchestra.run.smithi027.stdout:Enabling the dashboard module... 2024-09-17T00:13:16.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:16 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3528233772' entity='client.admin' 2024-09-17T00:13:16.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:16 smithi027 ceph-mon[25467]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:17.488 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:17 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2271911364' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T00:13:18.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:18 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2271911364' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T00:13:18.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:18 smithi027 ceph-mon[25467]: mgrmap e9: smithi027.paiqzz(active, since 27s) 2024-09-17T00:13:19.049 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "active_name": "smithi027.paiqzz", 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for the mgr to restart... 2024-09-17T00:13:19.050 INFO:teuthology.orchestra.run.smithi027.stdout:Waiting for mgr epoch 9... 2024-09-17T00:13:19.431 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:19 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/892499916' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T00:13:22.509 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: Active manager daemon smithi027.paiqzz restarted 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: Activating manager daemon smithi027.paiqzz 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: mgrmap e10: smithi027.paiqzz(active, starting, since 0.00338946s) 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi027.paiqzz", "id": "smithi027.paiqzz"}]: dispatch 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T00:13:22.510 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T00:13:22.511 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: Manager daemon smithi027.paiqzz is now available 2024-09-17T00:13:22.511 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:13:22.511 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/mirror_snapshot_schedule"}]: dispatch 2024-09-17T00:13:22.511 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:22 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/trash_purge_schedule"}]: dispatch 2024-09-17T00:13:24.149 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout { 2024-09-17T00:13:24.150 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T00:13:24.150 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T00:13:24.150 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout } 2024-09-17T00:13:24.150 INFO:teuthology.orchestra.run.smithi027.stdout:mgr epoch 9 is available 2024-09-17T00:13:24.150 INFO:teuthology.orchestra.run.smithi027.stdout:Generating a dashboard self-signed certificate... 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: mgrmap e11: smithi027.paiqzz(active, since 1.00647s) 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:13:23] ENGINE Bus STARTING 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:13:24] ENGINE Serving on https://172.21.15.27:7150 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:13:24] ENGINE Error in HTTPServer.serve 2024-09-17T00:13:24.398 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Traceback (most recent call last): 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._connections.run(self.expiration_interval) 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._run(expiration_interval) 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s = self.context.wrap_socket( 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: return self.sslsocket_class._create( 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T00:13:24.399 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self.do_handshake() 2024-09-17T00:13:24.400 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T00:13:24.400 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._sslobj.do_handshake() 2024-09-17T00:13:24.400 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T00:13:24.400 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:13:24] ENGINE Serving on http://172.21.15.27:8765 2024-09-17T00:13:24.400 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:13:24] ENGINE Bus STARTED 2024-09-17T00:13:25.397 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T00:13:25.398 INFO:teuthology.orchestra.run.smithi027.stdout:Creating initial admin user... 2024-09-17T00:13:25.976 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:25 smithi027 ceph-mon[25467]: mgrmap e12: smithi027.paiqzz(active, since 2s) 2024-09-17T00:13:25.977 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:25 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:25.977 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:25 smithi027 ceph-mon[25467]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:25.977 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:25 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:25.977 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:25 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:27.013 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:26 smithi027 ceph-mon[25467]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:27.014 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:26 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:27.015 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$3FiGxeJ3/OoJ4z//fmOhQ.aJZlMX5oyusQUcBdoDZpDNq63fihWzi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726532006, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T00:13:27.016 INFO:teuthology.orchestra.run.smithi027.stdout:Fetching dashboard port number... 2024-09-17T00:13:28.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:27 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1408811756' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T00:13:28.316 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T00:13:28.328 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T00:13:28.328 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout disabled 2024-09-17T00:13:28.335 INFO:teuthology.orchestra.run.smithi027.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T00:13:28.336 INFO:teuthology.orchestra.run.smithi027.stdout:systemctl: stdout inactive 2024-09-17T00:13:28.336 INFO:teuthology.orchestra.run.smithi027.stdout:firewalld.service is not enabled 2024-09-17T00:13:28.336 INFO:teuthology.orchestra.run.smithi027.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout:Ceph Dashboard is now available at: 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout: URL: https://smithi027.front.sepia.ceph.com:8443/ 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout: User: admin 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout: Password: yq33ae56uv 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:28.338 INFO:teuthology.orchestra.run.smithi027.stdout:Saving cluster configuration to /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config directory 2024-09-17T00:13:29.607 INFO:teuthology.orchestra.run.smithi027.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T00:13:29.607 INFO:teuthology.orchestra.run.smithi027.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T00:13:29.607 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.607 INFO:teuthology.orchestra.run.smithi027.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:13:29.607 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: ceph telemetry on 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout:For more information see: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:29.608 INFO:teuthology.orchestra.run.smithi027.stdout:Bootstrap complete. 2024-09-17T00:13:29.653 INFO:tasks.cephadm:Fetching config... 2024-09-17T00:13:29.654 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:13:29.654 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T00:13:29.671 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T00:13:29.672 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:13:29.672 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T00:13:29.729 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T00:13:29.729 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:13:29.729 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/keyring of=/dev/stdout 2024-09-17T00:13:29.795 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T00:13:29.795 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:13:29.795 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T00:13:29.852 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T00:13:29.852 DEBUG:teuthology.orchestra.run.smithi027:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5lgVElLMRpz+mYInzKIK18SKJ2nplPU4d1phVUxfLWthcIF4TjX9FTfCcb/+xlpIy5wXpgJbbtaaBcN+0BmcCVRmYre18MqzaD/e/v3O73Pde6HKZd7Ohc3jmKispCCmnM3ge6pzbhZekyg6CFXnO2bY7KQ8XOSzA+xvQkbFxhK/NCJJsYwID5ZIPeE1i/EfzgycyvNNO2k7ip56/mnasvulGpT1upYN4m6cuWdlWFTGx4VJFkHB+RSuZG0HUovSAzbxaQWA4gMZXzCgdP0MYzVwimzO2C3AxdVJBXGGlWLZFvTnyB8XLSNrhcLCt40vHAP7tbKTf2jJt3C1wbz5tqTloWnEQJ9y6jHK8rpNAq5WOKfXDielS8KAUg1KqyR8lM323YWvu7xYrb7/JaQvrCGt27PfJuqJQop2nju8ZtC5ZvYaIZEdhqs3VazNt6W58w6/FwVppa3k5uGfZ76eyO7jtRpxLP+A4IIMCyOfOjLsMUuajBQyBGwqE41xT3Xs= ceph-5142ec4a-7489-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T00:13:29.914 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:29 smithi027 ceph-mon[25467]: mgrmap e13: smithi027.paiqzz(active, since 6s) 2024-09-17T00:13:29.914 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:29 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2235954359' entity='client.admin' 2024-09-17T00:13:29.928 INFO:teuthology.orchestra.run.smithi027.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5lgVElLMRpz+mYInzKIK18SKJ2nplPU4d1phVUxfLWthcIF4TjX9FTfCcb/+xlpIy5wXpgJbbtaaBcN+0BmcCVRmYre18MqzaD/e/v3O73Pde6HKZd7Ohc3jmKispCCmnM3ge6pzbhZekyg6CFXnO2bY7KQ8XOSzA+xvQkbFxhK/NCJJsYwID5ZIPeE1i/EfzgycyvNNO2k7ip56/mnasvulGpT1upYN4m6cuWdlWFTGx4VJFkHB+RSuZG0HUovSAzbxaQWA4gMZXzCgdP0MYzVwimzO2C3AxdVJBXGGlWLZFvTnyB8XLSNrhcLCt40vHAP7tbKTf2jJt3C1wbz5tqTloWnEQJ9y6jHK8rpNAq5WOKfXDielS8KAUg1KqyR8lM323YWvu7xYrb7/JaQvrCGt27PfJuqJQop2nju8ZtC5ZvYaIZEdhqs3VazNt6W58w6/FwVppa3k5uGfZ76eyO7jtRpxLP+A4IIMCyOfOjLsMUuajBQyBGwqE41xT3Xs= ceph-5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:13:29.948 DEBUG:teuthology.orchestra.run.smithi050:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5lgVElLMRpz+mYInzKIK18SKJ2nplPU4d1phVUxfLWthcIF4TjX9FTfCcb/+xlpIy5wXpgJbbtaaBcN+0BmcCVRmYre18MqzaD/e/v3O73Pde6HKZd7Ohc3jmKispCCmnM3ge6pzbhZekyg6CFXnO2bY7KQ8XOSzA+xvQkbFxhK/NCJJsYwID5ZIPeE1i/EfzgycyvNNO2k7ip56/mnasvulGpT1upYN4m6cuWdlWFTGx4VJFkHB+RSuZG0HUovSAzbxaQWA4gMZXzCgdP0MYzVwimzO2C3AxdVJBXGGlWLZFvTnyB8XLSNrhcLCt40vHAP7tbKTf2jJt3C1wbz5tqTloWnEQJ9y6jHK8rpNAq5WOKfXDielS8KAUg1KqyR8lM323YWvu7xYrb7/JaQvrCGt27PfJuqJQop2nju8ZtC5ZvYaIZEdhqs3VazNt6W58w6/FwVppa3k5uGfZ76eyO7jtRpxLP+A4IIMCyOfOjLsMUuajBQyBGwqE41xT3Xs= ceph-5142ec4a-7489-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T00:13:30.007 INFO:teuthology.orchestra.run.smithi050.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5lgVElLMRpz+mYInzKIK18SKJ2nplPU4d1phVUxfLWthcIF4TjX9FTfCcb/+xlpIy5wXpgJbbtaaBcN+0BmcCVRmYre18MqzaD/e/v3O73Pde6HKZd7Ohc3jmKispCCmnM3ge6pzbhZekyg6CFXnO2bY7KQ8XOSzA+xvQkbFxhK/NCJJsYwID5ZIPeE1i/EfzgycyvNNO2k7ip56/mnasvulGpT1upYN4m6cuWdlWFTGx4VJFkHB+RSuZG0HUovSAzbxaQWA4gMZXzCgdP0MYzVwimzO2C3AxdVJBXGGlWLZFvTnyB8XLSNrhcLCt40vHAP7tbKTf2jJt3C1wbz5tqTloWnEQJ9y6jHK8rpNAq5WOKfXDielS8KAUg1KqyR8lM323YWvu7xYrb7/JaQvrCGt27PfJuqJQop2nju8ZtC5ZvYaIZEdhqs3VazNt6W58w6/FwVppa3k5uGfZ76eyO7jtRpxLP+A4IIMCyOfOjLsMUuajBQyBGwqE41xT3Xs= ceph-5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:13:30.020 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T00:13:30.271 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:13:31.603 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T00:13:31.603 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T00:13:32.053 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:13:32.219 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:31 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2654726247' entity='client.admin' 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd/host:smithi027", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi027", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi027", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T00:13:33.139 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:13:33.140 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:33 smithi027 ceph-mon[25467]: Deploying daemon ceph-exporter.smithi027 on smithi027 2024-09-17T00:13:33.803 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi050 2024-09-17T00:13:33.803 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:13:33.803 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/etc/ceph/ceph.conf 2024-09-17T00:13:33.823 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:13:33.823 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T00:13:33.883 INFO:tasks.cephadm:Adding host smithi050 to orchestrator... 2024-09-17T00:13:33.883 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch host add smithi050 2024-09-17T00:13:34.407 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:34 smithi027 ceph-mon[25467]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:34.407 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:34 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:34.471 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:13:36.518 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:36 smithi027 ceph-mon[25467]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:38.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: Deploying cephadm binary to smithi050 2024-09-17T00:13:38.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:38.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:38.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:38.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:38.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi027", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:13:38.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi027", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T00:13:38.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:13:38.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: Deploying daemon crash.smithi027 on smithi027 2024-09-17T00:13:38.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:37 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:39.415 INFO:teuthology.orchestra.run.smithi027.stdout:Added host 'smithi050' with addr '172.21.15.50' 2024-09-17T00:13:40.031 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T00:13:40.331 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:13:40.665 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:40.665 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:40.665 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:40.666 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:40.666 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: Deploying daemon node-exporter.smithi027 on smithi027 2024-09-17T00:13:40.666 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:40.666 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:40 smithi027 ceph-mon[25467]: Added host smithi050 2024-09-17T00:13:41.030 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:13:41.030 INFO:teuthology.orchestra.run.smithi027.stdout:[{"addr": "172.21.15.27", "hostname": "smithi027", "labels": [], "status": ""}, {"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}] 2024-09-17T00:13:41.645 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:41 smithi027 ceph-mon[25467]: from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:13:41.726 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T00:13:41.726 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T00:13:42.012 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:13:43.401 INFO:teuthology.orchestra.run.smithi027.stderr:adjusted tunables profile to default 2024-09-17T00:13:43.402 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:43 smithi027 ceph-mon[25467]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:43.402 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:43 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:43.402 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:43 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/583270585' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T00:13:44.252 INFO:tasks.cephadm:Adding mon.smithi027 on smithi027 2024-09-17T00:13:44.252 INFO:tasks.cephadm:Adding mon.smithi050 on smithi050 2024-09-17T00:13:44.252 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch apply mon '2;smithi027:172.21.15.27=smithi027;smithi050:172.21.15.50=smithi050' 2024-09-17T00:13:44.522 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:44.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:44 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/583270585' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T00:13:44.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:44 smithi027 ceph-mon[25467]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T00:13:44.573 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:45.163 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled mon update... 2024-09-17T00:13:45.723 DEBUG:teuthology.orchestra.run.smithi050:mon.smithi050> sudo journalctl -f -n 0 -u ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi050.service 2024-09-17T00:13:45.726 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:45.726 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:45.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: Deploying daemon alertmanager.smithi027 on smithi027 2024-09-17T00:13:45.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi027:172.21.15.27=smithi027;smithi050:172.21.15.50=smithi050", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:13:45.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: Saving service mon spec with placement smithi027:172.21.15.27=smithi027;smithi050:172.21.15.50=smithi050;count:2 2024-09-17T00:13:45.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:45 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:46.008 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:46.052 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:46.710 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:46.711 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:46.711 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:13:47.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:47 smithi027 ceph-mon[25467]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:47.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:47 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/546144956' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:13:47.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:47 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:48.440 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:48.441 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:48.691 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:48.736 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:49.401 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:49.401 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:49.401 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:13:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:49 smithi027 ceph-mon[25467]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:49 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1614969142' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:13:51.170 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:51.170 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:51.422 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:51.466 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:51.662 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:51 smithi027 ceph-mon[25467]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:52.103 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:52.103 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:52.103 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:13:52.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:52 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/9304958' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:13:53.675 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:53.676 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:53.926 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:53.971 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:54.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:54.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T00:13:54.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:54.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:53 smithi027 ceph-mon[25467]: Deploying daemon grafana.smithi027 on smithi027 2024-09-17T00:13:54.635 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:54.635 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:54.636 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:13:55.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:54 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2890127667' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:13:56.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:55 smithi027 ceph-mon[25467]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:56.346 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:56.347 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:56.597 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:56.641 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:57.301 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:57.301 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:57.302 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:13:58.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:57 smithi027 ceph-mon[25467]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:13:58.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:57 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1781716029' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:13:58.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:57 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:13:58.968 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:13:58.969 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:13:59.220 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:59.264 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:13:59.912 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:13:59.913 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:13:59.913 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:00.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:13:59 smithi027 ceph-mon[25467]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1782011748' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:01.514 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:01.514 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:01.788 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:01.833 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:02.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:01 smithi027 ceph-mon[25467]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:02.633 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:02.633 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:02.634 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:02.863 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:02 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1626824648' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:04.384 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:04.384 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:04.514 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:04.514 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.514 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.514 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.515 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.515 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.515 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.515 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.515 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:04 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:04.640 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:04.683 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:05.514 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:05.514 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:05.515 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:05.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:05 smithi027 ceph-mon[25467]: Deploying daemon prometheus.smithi027 on smithi027 2024-09-17T00:14:06.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:06 smithi027 ceph-mon[25467]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:06.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:06 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2605596557' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:07.095 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:07.095 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:07.348 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:07.393 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:08.038 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:08.039 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:08.039 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:08.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:08 smithi027 ceph-mon[25467]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:08.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:08 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:08.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:08 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2517264688' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:09.744 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:09.745 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:09.997 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:10.041 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:10 smithi027 ceph-mon[25467]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:10.838 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:10.838 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:10.838 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:11.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:11 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2482945906' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:12.397 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:12.398 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:12.467 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:12 smithi027 ceph-mon[25467]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:12.647 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:12.702 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:13.506 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:13.507 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:13.507 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:14.428 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:14 smithi027 ceph-mon[25467]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:14.428 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:14 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2960837867' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:15.147 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:15.148 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:15.400 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:15.444 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:15.639 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:15 smithi027 ceph-mon[25467]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:15.639 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:15 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:15.639 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:15 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:15.639 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:15 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:15.639 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:15 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-17T00:14:16.366 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:16.367 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:16.367 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:16.862 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:16 smithi027 ceph-mon[25467]: from='mgr.14162 172.21.15.27:0/3732449284' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T00:14:16.862 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:16 smithi027 ceph-mon[25467]: mgrmap e14: smithi027.paiqzz(active, since 53s) 2024-09-17T00:14:16.862 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:16 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1805839174' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:17.929 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:17.930 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:18.185 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:18.230 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:18.874 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:18.874 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:18.874 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:19.214 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:18 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1442710787' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:20.611 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:20.611 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:20.865 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:20.873 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: Active manager daemon smithi027.paiqzz restarted 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: Activating manager daemon smithi027.paiqzz 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: mgrmap e15: smithi027.paiqzz(active, starting, since 0.00374253s) 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi027.paiqzz", "id": "smithi027.paiqzz"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: Manager daemon smithi027.paiqzz is now available 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:20.874 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:14:20.912 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:21.609 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:21.609 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:21.609 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:21.961 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/mirror_snapshot_schedule"}]: dispatch 2024-09-17T00:14:21.961 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi027.paiqzz/trash_purge_schedule"}]: dispatch 2024-09-17T00:14:21.961 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:21.962 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:21 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/4184873633' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:21.962 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:21 smithi027 ceph-mon[25467]: mgrmap e16: smithi027.paiqzz(active, since 1.00571s) 2024-09-17T00:14:23.310 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:23.311 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:23.556 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:23.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:23.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:23 smithi027 ceph-mon[25467]: [17/Sep/2024:00:14:22] ENGINE Bus STARTING 2024-09-17T00:14:23.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:23 smithi027 ceph-mon[25467]: [17/Sep/2024:00:14:22] ENGINE Serving on http://172.21.15.27:8765 2024-09-17T00:14:23.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:24.587 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T00:14:24.680 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:14:22] ENGINE Serving on https://172.21.15.27:7150 2024-09-17T00:14:24.680 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:14:22] ENGINE Bus STARTED 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:24 smithi027 ceph-mon[25467]: [17/Sep/2024:00:14:22] ENGINE Error in HTTPServer.serve 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: Traceback (most recent call last): 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._connections.run(self.expiration_interval) 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._run(expiration_interval) 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T00:14:24.681 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: s = self.context.wrap_socket( 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: return self.sslsocket_class._create( 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self.do_handshake() 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: self._sslobj.do_handshake() 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T00:14:24.682 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:24 smithi027 ceph-mon[25467]: mgrmap e17: smithi027.paiqzz(active, since 2s) 2024-09-17T00:14:25.480 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:25.481 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:25.481 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:26.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/889808603' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd/host:smithi027", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:14:27.237 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:27.237 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:27.483 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:28.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi027:/etc/ceph/ceph.conf 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi050:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi027:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-17T00:14:28.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi027:/etc/ceph/ceph.client.admin.keyring 2024-09-17T00:14:28.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi050:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T00:14:28.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: Updating smithi027:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T00:14:28.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:28.275 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:28.275 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:28.276 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:29.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:29.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:29.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:29.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:14:29.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T00:14:29.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:29.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: Deploying daemon ceph-exporter.smithi050 on smithi050 2024-09-17T00:14:29.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:28 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2230440732' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:29.896 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:29.896 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:30.231 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:31.180 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:31.180 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:31.180 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:31.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:31 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1743054174' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:33.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:33.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:32 smithi027 ceph-mon[25467]: Deploying daemon crash.smithi050 on smithi050 2024-09-17T00:14:33.180 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:33.181 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:33.460 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:34.231 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:34.231 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:34.232 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:34.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:34 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2422031332' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:36.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:36.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:36.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:36.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:36.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: Deploying daemon node-exporter.smithi050 on smithi050 2024-09-17T00:14:36.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:36.034 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:14:36.225 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:36.225 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:36.477 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:37.447 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:37.447 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:37.447 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:37.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:37 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/3196835396' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:39.903 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:39.904 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:40.335 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:40.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:40.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:40.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi050.eyeebe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi050.eyeebe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:40.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:40 smithi027 ceph-mon[25467]: Deploying daemon mgr.smithi050.eyeebe on smithi050 2024-09-17T00:14:41.705 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:41.705 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:41.705 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:41 smithi027 ceph-mon[25467]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:41 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:42.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/3139299298' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:42.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:42.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:42.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:42.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:42.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T00:14:42.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:43.709 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:43.710 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:43.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:43 smithi027 ceph-mon[25467]: Deploying daemon mon.smithi050 on smithi050 2024-09-17T00:14:43.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:43 smithi027 ceph-mon[25467]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:44.950 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi050/config 2024-09-17T00:14:45.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:44 smithi027 ceph-mon[25467]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:45.818 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:45.818 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":1,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:12:22.944274Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T00:14:45.818 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 1 2024-09-17T00:14:47.844 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T00:14:47.845 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T00:14:48.104 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi050/config 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: mon.smithi027 calling monitor election 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.? 172.21.15.50:0/160286515' entity='mgr.smithi050.eyeebe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi050.eyeebe/crt"}]: dispatch 2024-09-17T00:14:51.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: mon.smithi050 calling monitor election 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: mon.smithi027 is new leader, mons smithi027,smithi050 in quorum (ranks 0,1) 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: monmap epoch 2 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: last_changed 2024-09-17T00:14:46.210454+0000 2024-09-17T00:14:51.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: created 2024-09-17T00:12:22.944274+0000 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: min_mon_release 19 (squid) 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: election_strategy: 1 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: 0: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.smithi027 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: 1: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: fsmap 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: mgrmap e17: smithi027.paiqzz(active, since 30s) 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: overall HEALTH_OK 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: Standby manager daemon smithi050.eyeebe started 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.? 172.21.15.50:0/160286515' entity='mgr.smithi050.eyeebe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T00:14:51.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.? 172.21.15.50:0/160286515' entity='mgr.smithi050.eyeebe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi050.eyeebe/key"}]: dispatch 2024-09-17T00:14:51.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.? 172.21.15.50:0/160286515' entity='mgr.smithi050.eyeebe' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T00:14:51.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.536 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:51 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:51.786 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-17T00:14:51.786 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":2,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","modified":"2024-09-17T00:14:46.210454Z","created":"2024-09-17T00:12:22.944274Z","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":"smithi027","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T00:14:51.786 INFO:teuthology.orchestra.run.smithi050.stderr:dumped monmap epoch 2 2024-09-17T00:14:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:52 smithi027 ceph-mon[25467]: mgrmap e18: smithi027.paiqzz(active, since 30s), standbys: smithi050.eyeebe 2024-09-17T00:14:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi050.eyeebe", "id": "smithi050.eyeebe"}]: dispatch 2024-09-17T00:14:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:14:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:52 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2146105177' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:52 smithi050 ceph-mon[34532]: mgrmap e18: smithi027.paiqzz(active, since 30s), standbys: smithi050.eyeebe 2024-09-17T00:14:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr metadata", "who": "smithi050.eyeebe", "id": "smithi050.eyeebe"}]: dispatch 2024-09-17T00:14:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:14:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:52 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/2146105177' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T00:14:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:14:52.985 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T00:14:52.986 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T00:14:53.246 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:14:53.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:53 smithi027 ceph-mon[25467]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:53 smithi050 ceph-mon[34532]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:53.988 INFO:teuthology.orchestra.run.smithi027.stdout:# minimal ceph.conf for 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:14:53.989 INFO:teuthology.orchestra.run.smithi027.stdout:[global] 2024-09-17T00:14:53.989 INFO:teuthology.orchestra.run.smithi027.stdout: fsid = 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:14:53.989 INFO:teuthology.orchestra.run.smithi027.stdout: mon_host = [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] 2024-09-17T00:14:54.695 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T00:14:54.695 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:14:54.695 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T00:14:54.724 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:14:54.724 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T00:14:54.791 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:14:54.791 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T00:14:54.820 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:14:54.820 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T00:14:54.887 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T00:14:54.887 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:14:54.887 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:14:54.904 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T00:14:54.904 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/nvme4n1 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Updating smithi027:/etc/ceph/ceph.conf 2024-09-17T00:14:54.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/935974617' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Updating smithi050:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Updating smithi027:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Reconfiguring mon.smithi027 (unknown last config time)... 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:54.946 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: Reconfiguring daemon mon.smithi027 on smithi027 2024-09-17T00:14:54.947 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:54 smithi027 ceph-mon[25467]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:54.960 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/nvme4n1 2024-09-17T00:14:54.960 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:13:33.100841573 +0000 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:57.527867364 +0000 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:57.527867364 +0000 2024-09-17T00:14:54.961 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:57.522867494 +0000 2024-09-17T00:14:54.961 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T00:14:55.026 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:14:55.026 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:14:55.026 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000232314 s, 2.2 MB/s 2024-09-17T00:14:55.027 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T00:14:55.085 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/nvme3n1 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Updating smithi027:/etc/ceph/ceph.conf 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Updating smithi050:/etc/ceph/ceph.conf 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/935974617' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Updating smithi050:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Updating smithi027:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Reconfiguring mon.smithi027 (unknown last config time)... 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: Reconfiguring daemon mon.smithi027 on smithi027 2024-09-17T00:14:55.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:54 smithi050 ceph-mon[34532]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:55.142 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/nvme3n1 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:13:33.090841830 +0000 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:57.381871146 +0000 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:57.381871146 +0000 2024-09-17T00:14:55.143 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:57.376871276 +0000 2024-09-17T00:14:55.143 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T00:14:55.207 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:14:55.207 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:14:55.207 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000224547 s, 2.3 MB/s 2024-09-17T00:14:55.208 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T00:14:55.265 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/nvme2n1 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/nvme2n1 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 1015 Links: 1 Device type: 103,4 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:55.322 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:13:33.079842112 +0000 2024-09-17T00:14:55.323 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:57.237874877 +0000 2024-09-17T00:14:55.323 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:57.237874877 +0000 2024-09-17T00:14:55.323 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:57.231875032 +0000 2024-09-17T00:14:55.323 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T00:14:55.387 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:14:55.387 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:14:55.387 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000235381 s, 2.2 MB/s 2024-09-17T00:14:55.388 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T00:14:55.445 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/nvme1n1 2024-09-17T00:14:55.501 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/nvme1n1 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 1003 Links: 1 Device type: 103,2 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-09-17 00:13:33.068842395 +0000 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-09-17 00:10:57.086878789 +0000 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-09-17 00:10:57.086878789 +0000 2024-09-17T00:14:55.502 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-09-17 00:10:57.081878918 +0000 2024-09-17T00:14:55.502 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T00:14:55.566 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-09-17T00:14:55.566 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-09-17T00:14:55.566 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000221355 s, 2.3 MB/s 2024-09-17T00:14:55.567 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T00:14:55.625 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:14:55.625 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T00:14:55.644 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T00:14:55.644 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme4n1 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme4n1 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:55.703 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:14:25.697195046 +0000 2024-09-17T00:14:55.704 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:59.162458709 +0000 2024-09-17T00:14:55.704 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:59.162458709 +0000 2024-09-17T00:14:55.704 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:59.160458760 +0000 2024-09-17T00:14:55.704 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T00:14:55.770 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:14:55.770 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:14:55.770 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000150964 s, 3.4 MB/s 2024-09-17T00:14:55.771 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T00:14:55.829 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme3n1 2024-09-17T00:14:55.886 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme3n1 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:14:25.688195275 +0000 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:59.019462368 +0000 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:59.019462368 +0000 2024-09-17T00:14:55.887 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:59.016462445 +0000 2024-09-17T00:14:55.887 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T00:14:55.952 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:14:55.952 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:14:55.952 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000149411 s, 3.4 MB/s 2024-09-17T00:14:55.954 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T00:14:56.012 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme2n1 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme2n1 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:14:25.680195477 +0000 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:58.880465926 +0000 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:58.880465926 +0000 2024-09-17T00:14:56.068 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:58.877466003 +0000 2024-09-17T00:14:56.069 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T00:14:56.132 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:14:56.132 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:14:56.132 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000132491 s, 3.9 MB/s 2024-09-17T00:14:56.133 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T00:14:56.191 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme1n1 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme1n1 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-17 00:14:25.671195705 +0000 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-17 00:10:58.729469791 +0000 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-17 00:10:58.729469791 +0000 2024-09-17T00:14:56.247 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-09-17 00:10:58.725469894 +0000 2024-09-17T00:14:56.248 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T00:14:56.310 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-17T00:14:56.310 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-17T00:14:56.310 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000125088 s, 4.1 MB/s 2024-09-17T00:14:56.312 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T00:14:56.368 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-17T00:14:56.654 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi050/config 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: Reconfiguring mgr.smithi027.paiqzz (unknown last config time)... 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi027.paiqzz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: Reconfiguring daemon mgr.smithi027.paiqzz on smithi027 2024-09-17T00:14:56.775 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:56 smithi050 ceph-mon[34532]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:56.929 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.929 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.929 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:56.929 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: Reconfiguring mgr.smithi027.paiqzz (unknown last config time)... 2024-09-17T00:14:56.930 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi027.paiqzz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T00:14:56.930 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T00:14:56.930 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:56.930 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: Reconfiguring daemon mgr.smithi027.paiqzz on smithi027 2024-09-17T00:14:56.930 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:56 smithi027 ceph-mon[25467]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:57.303 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled osd.all-available-devices update... 2024-09-17T00:14:57.908 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-17T00:14:57.908 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:14:58.266 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:14:58.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:58.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:58.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: Reconfiguring ceph-exporter.smithi027 (monmap changed)... 2024-09-17T00:14:58.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi027", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:14:58.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: Reconfiguring daemon ceph-exporter.smithi027 on smithi027 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: Marking host: smithi027 for OSDSpec preview refresh. 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: Marking host: smithi050 for OSDSpec preview refresh. 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: Saving service osd.all-available-devices spec with placement * 2024-09-17T00:14:58.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:58 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:58.645 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:58.645 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:58.645 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: Reconfiguring ceph-exporter.smithi027 (monmap changed)... 2024-09-17T00:14:58.645 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi027", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: Reconfiguring daemon ceph-exporter.smithi027 on smithi027 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: Marking host: smithi027 for OSDSpec preview refresh. 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: Marking host: smithi050 for OSDSpec preview refresh. 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: Saving service osd.all-available-devices spec with placement * 2024-09-17T00:14:58.646 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:58 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:59.361 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:14:59.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:59 smithi050 ceph-mon[34532]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:59.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:59 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:59.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:59 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:59.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:59 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi027", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:14:59.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:14:59 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:14:59.685 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:59 smithi027 ceph-mon[25467]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:14:59.685 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:59 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:59.685 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:59 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:14:59.685 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:59 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi027", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:14:59.685 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:14:59 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:00.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:00 smithi027 ceph-mon[25467]: Reconfiguring crash.smithi027 (monmap changed)... 2024-09-17T00:15:00.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:00 smithi027 ceph-mon[25467]: Reconfiguring daemon crash.smithi027 on smithi027 2024-09-17T00:15:00.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1460658299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:00.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:00 smithi050 ceph-mon[34532]: Reconfiguring crash.smithi027 (monmap changed)... 2024-09-17T00:15:00.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:00 smithi050 ceph-mon[34532]: Reconfiguring daemon crash.smithi027 on smithi027 2024-09-17T00:15:00.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1460658299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:00.777 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:01.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:01 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:01.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:01 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:01.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:01 smithi050 ceph-mon[34532]: Reconfiguring alertmanager.smithi027 (dependencies changed)... 2024-09-17T00:15:01.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:01 smithi050 ceph-mon[34532]: Reconfiguring daemon alertmanager.smithi027 on smithi027 2024-09-17T00:15:01.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:01 smithi050 ceph-mon[34532]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:01.778 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:01.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:01 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:01.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:01 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:01.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:01 smithi027 ceph-mon[25467]: Reconfiguring alertmanager.smithi027 (dependencies changed)... 2024-09-17T00:15:01.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:01 smithi027 ceph-mon[25467]: Reconfiguring daemon alertmanager.smithi027 on smithi027 2024-09-17T00:15:01.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:01 smithi027 ceph-mon[25467]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:02.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:02 smithi027 ceph-mon[25467]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:03.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:02 smithi050 ceph-mon[34532]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:03.432 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:04.095 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:04.421 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:04 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2406480035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:04.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:04 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2406480035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:05.037 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:05 smithi027 ceph-mon[25467]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:05.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:05 smithi050 ceph-mon[34532]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:06.038 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:06.311 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:06.434 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:06 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:06.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:06 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:06.956 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: Reconfiguring grafana.smithi027 (dependencies changed)... 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: Reconfiguring daemon grafana.smithi027 on smithi027 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:07.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:07 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1034326636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: Reconfiguring grafana.smithi027 (dependencies changed)... 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: Reconfiguring daemon grafana.smithi027 on smithi027 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:07.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:07 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1034326636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:08.027 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:09.028 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:09.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:08 smithi027 ceph-mon[25467]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:09.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:08 smithi050 ceph-mon[34532]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:09.633 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:10.283 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:10 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2427800898' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:10.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:10 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2427800898' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:11.469 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:11.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:11 smithi027 ceph-mon[25467]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:11.629 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:11 smithi050 ceph-mon[34532]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:12.470 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:12.747 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:13.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:13.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:13.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:13 smithi027 ceph-mon[25467]: Reconfiguring prometheus.smithi027 (dependencies changed)... 2024-09-17T00:15:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:13 smithi027 ceph-mon[25467]: Reconfiguring daemon prometheus.smithi027 on smithi027 2024-09-17T00:15:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:13 smithi027 ceph-mon[25467]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:13.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:13.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:13.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:13 smithi050 ceph-mon[34532]: Reconfiguring prometheus.smithi027 (dependencies changed)... 2024-09-17T00:15:13.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:13 smithi050 ceph-mon[34532]: Reconfiguring daemon prometheus.smithi027 on smithi027 2024-09-17T00:15:13.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:13 smithi050 ceph-mon[34532]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:14.840 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:14 smithi027 ceph-mon[25467]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:15.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:14 smithi050 ceph-mon[34532]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:15.463 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:15.754 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:15 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2003972926' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:16.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:15 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2003972926' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:16.460 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:16.964 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:16 smithi027 ceph-mon[25467]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:17.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:16 smithi050 ceph-mon[34532]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:17.464 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:17.926 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:18.577 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:19.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:19.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:19.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-17T00:15:19.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:15:19.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:19.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-17T00:15:19.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4064111220' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:19.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:18 smithi027 ceph-mon[25467]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:19.320 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:19.320 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:19.320 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-17T00:15:19.320 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T00:15:19.321 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:19.321 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-17T00:15:19.321 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4064111220' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:19.321 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:18 smithi050 ceph-mon[34532]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:19.351 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:20.353 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:20.622 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: Reconfiguring crash.smithi050 (monmap changed)... 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:20.643 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:20 smithi050 ceph-mon[34532]: Reconfiguring daemon crash.smithi050 on smithi050 2024-09-17T00:15:20.743 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:20.744 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:20.744 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: Reconfiguring crash.smithi050 (monmap changed)... 2024-09-17T00:15:20.744 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T00:15:20.744 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:20.744 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:20 smithi027 ceph-mon[25467]: Reconfiguring daemon crash.smithi050 on smithi050 2024-09-17T00:15:21.253 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:21.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:21.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:21.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:21.631 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:21.631 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi050.eyeebe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T00:15:21.631 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T00:15:21.631 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:21.631 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:21 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1335466221' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:21.775 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi050.eyeebe", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:21.776 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:21 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1335466221' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:21.882 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: Reconfiguring mgr.smithi050.eyeebe (monmap changed)... 2024-09-17T00:15:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: Reconfiguring daemon mgr.smithi050.eyeebe on smithi050 2024-09-17T00:15:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T00:15:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T00:15:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:22.686 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: Reconfiguring mgr.smithi050.eyeebe (monmap changed)... 2024-09-17T00:15:22.686 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: Reconfiguring daemon mgr.smithi050.eyeebe on smithi050 2024-09-17T00:15:22.686 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:22.686 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:22.687 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T00:15:22.687 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T00:15:22.687 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:22.883 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:23.144 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:23.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:23 smithi027 ceph-mon[25467]: Reconfiguring mon.smithi050 (monmap changed)... 2024-09-17T00:15:23.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:23 smithi027 ceph-mon[25467]: Reconfiguring daemon mon.smithi050 on smithi050 2024-09-17T00:15:23.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:23 smithi027 ceph-mon[25467]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:23.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:23 smithi050 ceph-mon[34532]: Reconfiguring mon.smithi050 (monmap changed)... 2024-09-17T00:15:23.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:23 smithi050 ceph-mon[34532]: Reconfiguring daemon mon.smithi050 on smithi050 2024-09-17T00:15:23.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:23 smithi050 ceph-mon[34532]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:23.774 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi027.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi027.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.479 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi027.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi027.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi027.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi027.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:15:24.480 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:24 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1318264451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:24.512 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi027.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi027.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi027.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi027.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi027.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi027.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:15:24.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:24 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1318264451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:25.513 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:25.769 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:25 smithi027 ceph-mon[25467]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:25.769 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:25.769 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:25.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:25 smithi050 ceph-mon[34532]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:25.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:25.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:26.122 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:26.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:26.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:26.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:26 smithi027 ceph-mon[25467]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:27.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:27.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:27.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:26 smithi050 ceph-mon[34532]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:27.360 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:28.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:27 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/799635483' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:28.085 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:28.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:27 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/799635483' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:29.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:28 smithi027 ceph-mon[25467]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:29.085 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:29.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:28 smithi050 ceph-mon[34532]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:29.342 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:15:30.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.056 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:15:30.083 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:15:30.084 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.084 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:15:30.084 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:30.660 INFO:teuthology.orchestra.run.smithi027.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-09-17T00:15:31.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:31 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2087177302' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:31.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:31 smithi050 ceph-mon[34532]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:31.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:31 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2087177302' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:31.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:31 smithi027 ceph-mon[25467]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:31.662 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:32.215 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:32.505 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:32 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1286834220' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]: dispatch 2024-09-17T00:15:32.505 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:32 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]: dispatch 2024-09-17T00:15:32.505 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:32 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]': finished 2024-09-17T00:15:32.505 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:32 smithi027 ceph-mon[25467]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T00:15:32.505 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:32.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:32 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/1286834220' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]: dispatch 2024-09-17T00:15:32.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:32 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]: dispatch 2024-09-17T00:15:32.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:32 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f38dd257-25a9-4633-a1be-3e2fbd5afa6d"}]': finished 2024-09-17T00:15:32.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:32 smithi050 ceph-mon[34532]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T00:15:32.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:32.885 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1621751546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1372550976' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0da922e5-be72-4f76-8623-61381b815564"}]: dispatch 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1372550976' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0da922e5-be72-4f76-8623-61381b815564"}]': finished 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:33 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:33.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:33.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1621751546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:33.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1372550976' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0da922e5-be72-4f76-8623-61381b815564"}]: dispatch 2024-09-17T00:15:33.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1372550976' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0da922e5-be72-4f76-8623-61381b815564"}]': finished 2024-09-17T00:15:33.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T00:15:33.424 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:33.424 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:33 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:33.634 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1726532132,"num_remapped_pgs":0} 2024-09-17T00:15:34.425 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:34 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1012661039' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:34 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/1012661039' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:34.636 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:34.893 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:35.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:35 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2869793169' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:35.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:35 smithi027 ceph-mon[25467]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:35.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:35 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2869793169' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:35.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:35 smithi050 ceph-mon[34532]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:35.713 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:36.367 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:36 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:36.367 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:36 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/866668338' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:36.368 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726532133,"num_remapped_pgs":0} 2024-09-17T00:15:36.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:36 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:36.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:36 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/866668338' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:37.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:37.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2719436788' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]: dispatch 2024-09-17T00:15:37.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]: dispatch 2024-09-17T00:15:37.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]': finished 2024-09-17T00:15:37.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T00:15:37.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:37.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:37.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:37 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:37.369 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:37.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/2719436788' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]: dispatch 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]: dispatch 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "43dcb551-83f1-417d-a350-54935c1d6bea"}]': finished 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:37.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:37 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:37.637 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:38.305 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:38.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:38 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/624260007' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:38.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:38 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/624260007' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:39.155 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":8,"num_osds":3,"num_up_osds":0,"osd_up_since":0,"num_in_osds":3,"osd_in_since":1726532136,"num_remapped_pgs":0} 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1592466387' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4041049844' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c72049b3-5523-4ab3-b79f-ecb2fa6c9bef"}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4041049844' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c72049b3-5523-4ab3-b79f-ecb2fa6c9bef"}]': finished 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:39.437 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:39 smithi027 ceph-mon[25467]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1592466387' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4041049844' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c72049b3-5523-4ab3-b79f-ecb2fa6c9bef"}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4041049844' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c72049b3-5523-4ab3-b79f-ecb2fa6c9bef"}]': finished 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:39.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:39 smithi050 ceph-mon[34532]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:40.156 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:40.415 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:40.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:40 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3657887840' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:40.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:40 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3657887840' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:41.047 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:41.552 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:41 smithi050 ceph-mon[34532]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:41.552 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:41 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3519080710' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:41.643 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:41 smithi027 ceph-mon[25467]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:41.643 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:41 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3519080710' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:41.671 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726532138,"num_remapped_pgs":0} 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/3436660198' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]': finished 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:42.630 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:42.672 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/3436660198' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]: dispatch 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]: dispatch 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "71e24bc4-db0d-4b7a-89b7-8b8e8befab86"}]': finished 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:42.701 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:42.702 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:42.940 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:43.579 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:43.579 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:43 smithi027 ceph-mon[25467]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:43.580 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:43 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/877942076' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:43.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:43 smithi050 ceph-mon[34532]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:43.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:43 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/877942076' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:44.339 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1726532141,"num_remapped_pgs":0} 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4055006503' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/68683324' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea"}]: dispatch 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/68683324' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea"}]': finished 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:44.731 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:44.732 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:44.732 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:44.732 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:44.732 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4055006503' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/68683324' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea"}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/68683324' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea"}]': finished 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:44.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:45.339 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:45.600 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:45.707 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:45 smithi027 ceph-mon[25467]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:45.707 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:45 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/260976296' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:45.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:45 smithi050 ceph-mon[34532]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:45.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:45 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/260976296' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:46.322 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:46.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:46 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2753577546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:46.632 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:46 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2753577546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:46.908 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726532143,"num_remapped_pgs":0} 2024-09-17T00:15:47.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:47.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/1938810879' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]: dispatch 2024-09-17T00:15:47.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]: dispatch 2024-09-17T00:15:47.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]': finished 2024-09-17T00:15:47.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:47.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:47 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:15:47.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/1938810879' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e5dc4a17-f0a4-44fc-b24f-3a748f52d2da"}]': finished 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:47.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:47 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:15:47.909 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:48.171 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:48.625 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:48 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/2362372438' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:48.807 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:48.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:48 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/2362372438' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/365708759' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44ae8b18-661d-4539-a5e0-42ee6038950e"}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/365708759' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44ae8b18-661d-4539-a5e0-42ee6038950e"}]': finished 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:49.595 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:49.596 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:15:49.596 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:15:49.596 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:49 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3322500706' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:49.624 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/365708759' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "44ae8b18-661d-4539-a5e0-42ee6038950e"}]: dispatch 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/365708759' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44ae8b18-661d-4539-a5e0-42ee6038950e"}]': finished 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:15:49.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:15:49.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:49 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3322500706' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:50.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:50 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2777349287' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:50.625 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:50.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:50 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2777349287' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T00:15:50.888 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:51.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:51 smithi050 ceph-mon[34532]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:51.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:51 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:51.518 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:51.531 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:51 smithi027 ceph-mon[25467]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:51.531 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:15:52.302 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:15:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:52 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3498571084' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:52.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:52 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3498571084' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:53.303 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:53.656 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:53 smithi050 ceph-mon[34532]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:53.770 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:53 smithi027 ceph-mon[25467]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:54.102 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:54.741 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:54.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:54 smithi050 ceph-mon[34532]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:55.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:54 smithi027 ceph-mon[25467]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:55.407 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:15:56.001 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:55 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3183143017' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:56.001 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:55 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T00:15:56.001 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:55 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:56.001 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:55 smithi027 ceph-mon[25467]: Deploying daemon osd.0 on smithi050 2024-09-17T00:15:56.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:55 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3183143017' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:56.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:55 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T00:15:56.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:55 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:56.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:55 smithi050 ceph-mon[34532]: Deploying daemon osd.0 on smithi050 2024-09-17T00:15:56.408 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:15:56.851 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:15:56.854 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:56 smithi050 ceph-mon[34532]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:56.899 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:56 smithi027 ceph-mon[25467]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:58.021 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T00:15:58.021 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:58.161 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:15:58.161 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T00:15:58.161 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:15:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:58 smithi050 ceph-mon[34532]: Deploying daemon osd.1 on smithi027 2024-09-17T00:15:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:58 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4090490716' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:15:58 smithi050 ceph-mon[34532]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:59.120 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:58 smithi027 ceph-mon[25467]: Deploying daemon osd.1 on smithi027 2024-09-17T00:15:59.120 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:58 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4090490716' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:15:59.121 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:15:58 smithi027 ceph-mon[25467]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:15:59.761 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:00.762 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:00.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:00 smithi027 ceph-mon[25467]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:00.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:00 smithi050 ceph-mon[34532]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:01.030 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:01.834 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:02.093 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:01 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/636944012' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:02.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:01 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/636944012' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:02.613 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:03.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:02 smithi050 ceph-mon[34532]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:03.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:02 smithi027 ceph-mon[25467]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:03.614 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:03.871 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:04.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:04.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:04.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T00:16:04.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:04.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:03 smithi050 ceph-mon[34532]: Deploying daemon osd.2 on smithi050 2024-09-17T00:16:04.247 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:04.247 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:04.247 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T00:16:04.247 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:04.247 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:03 smithi027 ceph-mon[25467]: Deploying daemon osd.2 on smithi050 2024-09-17T00:16:04.440 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:04.954 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:04 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2488944803' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:04.954 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:04 smithi050 ceph-mon[34532]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:05.043 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:04 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2488944803' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:04 smithi027 ceph-mon[25467]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:06.020 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:05 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:06.044 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:06.263 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:05 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:06.389 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:07.200 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:07.200 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:06 smithi027 ceph-mon[25467]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:07.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:06 smithi050 ceph-mon[34532]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:07.909 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:08.213 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2348420688' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:08.213 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:08.213 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:08.213 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T00:16:08.213 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:08.214 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: Deploying daemon osd.3 on smithi027 2024-09-17T00:16:08.214 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T00:16:08.214 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:07 smithi027 ceph-mon[25467]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T00:16:08.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2348420688' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: Deploying daemon osd.3 on smithi027 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T00:16:08.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:07 smithi050 ceph-mon[34532]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T00:16:08.910 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:09.172 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:09.347 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:09.348 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:09 smithi027 ceph-mon[25467]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:09.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:09.403 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:09.403 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:09 smithi050 ceph-mon[34532]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:10.278 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:10.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:10.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T00:16:10.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:10.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:10.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:10.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:10 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T00:16:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:10.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:10.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:10 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:10.960 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1726532170,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:11.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:11.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641] boot 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2149941042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:11.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:11.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:11.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:11.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T00:16:11.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:11.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:11.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:11.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: osd.0 [v2:172.21.15.50:6800/1418927641,v1:172.21.15.50:6801/1418927641] boot 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2149941042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:11.536 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:11.537 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T00:16:11.537 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:11.961 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: Deploying daemon osd.4 on smithi050 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:12.474 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:12.475 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:12.475 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:12 smithi050 ceph-mon[34532]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: Deploying daemon osd.4 on smithi050 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:12.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:12.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:12.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:12.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:12.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:12 smithi027 ceph-mon[25467]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T00:16:12.596 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:13.254 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:13.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: pgmap v62: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2721108223' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:13.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:13 smithi027 ceph-mon[25467]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:13.534 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:13.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:13.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:13.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: pgmap v62: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T00:16:13.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2721108223' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:13.535 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:13 smithi050 ceph-mon[34532]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:13.983 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1726532170,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:14.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:14.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:14.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' 2024-09-17T00:16:14.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:14 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T00:16:14.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:14.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:14.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518]' entity='osd.1' 2024-09-17T00:16:14.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:14 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:14.983 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:15.459 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518] boot 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:15.460 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:15 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:15.791 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:15.791 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: osd.1 [v2:172.21.15.27:6802/1804109518,v1:172.21.15.27:6803/1804109518] boot 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:15.792 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:15 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:15.888 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:17.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T00:16:17.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:17.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:17.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:17.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: Deploying daemon osd.5 on smithi027 2024-09-17T00:16:17.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:16 smithi050 ceph-mon[34532]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T00:16:17.024 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:17.025 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T00:16:17.026 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:17.026 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: Deploying daemon osd.5 on smithi027 2024-09-17T00:16:17.026 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:16 smithi027 ceph-mon[25467]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T00:16:17.965 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T00:16:17.965 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:17.965 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T00:16:17.965 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:17.965 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:17.966 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:17 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3289568599' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:17.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:17.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:17.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:17.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:17.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:17.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:17 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3289568599' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:17.995 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":22,"num_osds":8,"num_up_osds":2,"osd_up_since":1726532174,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:18.827 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:18.827 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: osdmap e23: 8 total, 2 up, 8 in 2024-09-17T00:16:18.827 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: Deploying daemon osd.6 on smithi050 2024-09-17T00:16:18.828 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:18 smithi027 ceph-mon[25467]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T00:16:18.996 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:19.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: osdmap e23: 8 total, 2 up, 8 in 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:19.015 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: Deploying daemon osd.6 on smithi050 2024-09-17T00:16:19.016 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:18 smithi050 ceph-mon[34532]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T00:16:19.419 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534] boot 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:19.978 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:19.984 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: osd.2 [v2:172.21.15.50:6808/3843349534,v1:172.21.15.50:6809/3843349534] boot 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:19.985 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:20.255 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:21.201 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4184932509' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: pgmap v73: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:21.202 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:21.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:21.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4184932509' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:21.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: pgmap v73: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:21.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:21.347 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":25,"num_osds":8,"num_up_osds":3,"osd_up_since":1726532178,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:22.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:22.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:22.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:22.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:16:22.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:22 smithi050 ceph-mon[34532]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T00:16:22.348 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:16:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T00:16:22.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:16:22.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:22 smithi027 ceph-mon[25467]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T00:16:22.608 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:23.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:23.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: pgmap v76: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:23.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T00:16:23.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:23 smithi027 ceph-mon[25467]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T00:16:23.305 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:23.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:23.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: pgmap v76: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:23.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T00:16:23.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:23 smithi050 ceph-mon[34532]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T00:16:24.009 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":28,"num_osds":8,"num_up_osds":3,"osd_up_since":1726532178,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: osdmap e28: 8 total, 3 up, 8 in 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:24.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:24.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:24.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:24.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1987903692' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:24.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:24 smithi050 ceph-mon[34532]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' 2024-09-17T00:16:24.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:24.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T00:16:24.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:24.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: osdmap e28: 8 total, 3 up, 8 in 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1987903692' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:24.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:24 smithi027 ceph-mon[25467]: from='osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427]' entity='osd.3' 2024-09-17T00:16:25.010 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:25.465 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427] boot 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: osdmap e29: 8 total, 4 up, 8 in 2024-09-17T00:16:25.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: from='osd.4 ' entity='osd.4' 2024-09-17T00:16:25.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:25 smithi027 ceph-mon[25467]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: osd.3 [v2:172.21.15.27:6810/160015427,v1:172.21.15.27:6811/160015427] boot 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: osdmap e29: 8 total, 4 up, 8 in 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:25.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:25.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: from='osd.4 ' entity='osd.4' 2024-09-17T00:16:25.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:25 smithi050 ceph-mon[34532]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T00:16:26.147 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410] boot 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:26.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: Deploying daemon osd.7 on smithi027 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: mgrmap e19: smithi027.paiqzz(active, since 2m), standbys: smithi050.eyeebe 2024-09-17T00:16:26.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:26 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1822452981' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:26.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:26.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:26.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: osd.4 [v2:172.21.15.50:6816/879922410,v1:172.21.15.50:6817/879922410] boot 2024-09-17T00:16:26.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: Deploying daemon osd.7 on smithi027 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: mgrmap e19: smithi027.paiqzz(active, since 2m), standbys: smithi050.eyeebe 2024-09-17T00:16:26.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:26 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1822452981' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:26.972 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":30,"num_osds":8,"num_up_osds":5,"osd_up_since":1726532185,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:27.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T00:16:27.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:27.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:27.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:27.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:27.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: pgmap v82: 1 pgs: 1 peering; 449 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-17T00:16:27.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:27 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: pgmap v82: 1 pgs: 1 peering; 449 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-17T00:16:27.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:27 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:27.974 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:28.472 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:29.267 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:29.267 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:29 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:29.267 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:29 smithi027 ceph-mon[25467]: pgmap v83: 1 pgs: 1 peering; 449 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-17T00:16:29.267 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:29 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:29.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:29 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:29.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:29 smithi050 ceph-mon[34532]: pgmap v83: 1 pgs: 1 peering; 449 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-09-17T00:16:29.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:29 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:30.584 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":31,"num_osds":8,"num_up_osds":5,"osd_up_since":1726532185,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:30.751 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54697]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T00:16:30.752 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54697]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T00:16:30.752 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54697]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T00:16:30.752 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54697]: pam_unix(sudo:session): session closed for user root 2024-09-17T00:16:31.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54977]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T00:16:31.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54977]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T00:16:31.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54977]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T00:16:31.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 sudo[54977]: pam_unix(sudo:session): session closed for user root 2024-09-17T00:16:31.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/163369743' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:30 smithi027 ceph-mon[25467]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T00:16:31.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:30 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/163369743' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:31.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:30 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:31.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:30 smithi050 ceph-mon[34532]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T00:16:31.586 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:31.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45637]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T00:16:31.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45637]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T00:16:31.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45637]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T00:16:31.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45637]: pam_unix(sudo:session): session closed for user root 2024-09-17T00:16:31.856 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:32.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45648]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T00:16:32.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45648]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T00:16:32.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45648]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T00:16:32.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 sudo[45648]: pam_unix(sudo:session): session closed for user root 2024-09-17T00:16:32.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 10 KiB/s rd, 589 KiB/s wr, 36 op/s; 101 KiB/s, 0 objects/s recovering 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:16:32.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:32.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:32.206 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 10 KiB/s rd, 589 KiB/s wr, 36 op/s; 101 KiB/s, 0 objects/s recovering 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi027"}]: dispatch 2024-09-17T00:16:32.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "mon metadata", "id": "smithi050"}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:32.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:32.528 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1446109319' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 7.0 KiB/s rd, 406 KiB/s wr, 25 op/s; 70 KiB/s, 0 objects/s recovering 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:33.207 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:33.208 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:32 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:33.243 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":32,"num_osds":8,"num_up_osds":5,"osd_up_since":1726532185,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1446109319' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail; 7.0 KiB/s rd, 406 KiB/s wr, 25 op/s; 70 KiB/s, 0 objects/s recovering 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:33.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:32 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:34.244 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:34.402 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: from='osd.6 ' entity='osd.6' 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440] boot 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970] boot 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: osdmap e34: 8 total, 7 up, 8 in 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:34.403 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:34 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:34.515 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: from='osd.6 ' entity='osd.6' 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: osd.5 [v2:172.21.15.27:6818/1955582440,v1:172.21.15.27:6819/1955582440] boot 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: osd.6 [v2:172.21.15.50:6824/984682970,v1:172.21.15.50:6825/984682970] boot 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: osdmap e34: 8 total, 7 up, 8 in 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T00:16:34.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:34 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:35.187 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 7.5 KiB/s rd, 435 KiB/s wr, 26 op/s; 75 KiB/s, 0 objects/s recovering 2024-09-17T00:16:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: osdmap e35: 8 total, 7 up, 8 in 2024-09-17T00:16:35.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:35.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:35 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3497078625' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 7.5 KiB/s rd, 435 KiB/s wr, 26 op/s; 75 KiB/s, 0 objects/s recovering 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: osdmap e35: 8 total, 7 up, 8 in 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:35.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:35 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3497078625' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:35.853 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":35,"num_osds":8,"num_up_osds":7,"osd_up_since":1726532193,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:36.697 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:36 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:36.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:36 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:36.854 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:37.331 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:37.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:37 smithi027 ceph-mon[25467]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 5.6 KiB/s rd, 270 KiB/s wr, 18 op/s 2024-09-17T00:16:37.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:37 smithi050 ceph-mon[34532]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 5.6 KiB/s rd, 270 KiB/s wr, 18 op/s 2024-09-17T00:16:37.995 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:38.599 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:38 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/404054148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:38.630 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":35,"num_osds":8,"num_up_osds":7,"osd_up_since":1726532193,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:38.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:38 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/404054148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:39.631 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:39.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:39 smithi027 ceph-mon[25467]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-17T00:16:39.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:39 smithi027 ceph-mon[25467]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T00:16:39.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:39 smithi050 ceph-mon[34532]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 602 MiB used, 625 GiB / 626 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-17T00:16:39.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:39 smithi050 ceph-mon[34532]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T00:16:39.901 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:40.567 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:40.567 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T00:16:40.567 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:40.567 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: osdmap e36: 8 total, 7 up, 8 in 2024-09-17T00:16:40.567 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:40.568 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:40.568 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:40 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:16:40.583 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: osdmap e36: 8 total, 7 up, 8 in 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:40.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:40 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:16:41.315 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1726532193,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T00:16:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3837674278' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097] boot 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: osdmap e38: 8 total, 8 up, 8 in 2024-09-17T00:16:41.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:41 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3837674278' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 4.5 KiB/s rd, 218 KiB/s wr, 14 op/s 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097]' entity='osd.7' 2024-09-17T00:16:41.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: osd.7 [v2:172.21.15.27:6826/2767612097,v1:172.21.15.27:6827/2767612097] boot 2024-09-17T00:16:41.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: osdmap e38: 8 total, 8 up, 8 in 2024-09-17T00:16:41.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:41 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T00:16:42.317 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T00:16:42.828 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: purged_snaps scrub starts 2024-09-17T00:16:42.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: purged_snaps scrub ok 2024-09-17T00:16:42.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:42.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:42.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: osdmap e39: 8 total, 8 up, 8 in 2024-09-17T00:16:42.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:42 smithi050 ceph-mon[34532]: pgmap v98: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:16:43.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: purged_snaps scrub starts 2024-09-17T00:16:43.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: purged_snaps scrub ok 2024-09-17T00:16:43.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:43.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:43.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: osdmap e39: 8 total, 8 up, 8 in 2024-09-17T00:16:43.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:42 smithi027 ceph-mon[25467]: pgmap v98: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:16:43.479 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:44.422 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:44.423 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:44 smithi027 ceph-mon[25467]: osdmap e40: 8 total, 8 up, 8 in 2024-09-17T00:16:44.531 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:44 smithi050 ceph-mon[34532]: osdmap e40: 8 total, 8 up, 8 in 2024-09-17T00:16:45.508 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:45 smithi027 ceph-mon[25467]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T00:16:45.508 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:45 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3432417124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:45.508 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:45 smithi027 ceph-mon[25467]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:16:45.509 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":41,"num_osds":8,"num_up_osds":8,"osd_up_since":1726532201,"num_in_osds":8,"osd_in_since":1726532148,"num_remapped_pgs":0} 2024-09-17T00:16:45.510 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T00:16:45.557 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:45 smithi050 ceph-mon[34532]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T00:16:45.557 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:45 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3432417124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T00:16:45.557 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:45 smithi050 ceph-mon[34532]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:16:45.793 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:46.439 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:46.439 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":42,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","created":"2024-09-17T00:12:26.066269+0000","modified":"2024-09-17T00:16:45.275853+0000","last_up_change":"2024-09-17T00:16:41.491812+0000","last_in_change":"2024-09-17T00:15:48.689595+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-09-17T00:16:21.138817+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"28","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":"f38dd257-25a9-4633-a1be-3e2fbd5afa6d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6801","nonce":1418927641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6803","nonce":1418927641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6807","nonce":1418927641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6805","nonce":1418927641}]},"public_addr":"172.21.15.50:6801/1418927641","cluster_addr":"172.21.15.50:6803/1418927641","heartbeat_back_addr":"172.21.15.50:6807/1418927641","heartbeat_front_addr":"172.21.15.50:6805/1418927641","state":["exists","up"]},{"osd":1,"uuid":"0da922e5-be72-4f76-8623-61381b815564","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6803","nonce":1804109518}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6805","nonce":1804109518}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6809","nonce":1804109518}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6807","nonce":1804109518}]},"public_addr":"172.21.15.27:6803/1804109518","cluster_addr":"172.21.15.27:6805/1804109518","heartbeat_back_addr":"172.21.15.27:6809/1804109518","heartbeat_front_addr":"172.21.15.27:6807/1804109518","state":["exists","up"]},{"osd":2,"uuid":"43dcb551-83f1-417d-a350-54935c1d6bea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6809","nonce":3843349534}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6811","nonce":3843349534}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6815","nonce":3843349534}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6813","nonce":3843349534}]},"public_addr":"172.21.15.50:6809/3843349534","cluster_addr":"172.21.15.50:6811/3843349534","heartbeat_back_addr":"172.21.15.50:6815/3843349534","heartbeat_front_addr":"172.21.15.50:6813/3843349534","state":["exists","up"]},{"osd":3,"uuid":"c72049b3-5523-4ab3-b79f-ecb2fa6c9bef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6811","nonce":160015427}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6813","nonce":160015427}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6816","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6817","nonce":160015427}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6815","nonce":160015427}]},"public_addr":"172.21.15.27:6811/160015427","cluster_addr":"172.21.15.27:6813/160015427","heartbeat_back_addr":"172.21.15.27:6817/160015427","heartbeat_front_addr":"172.21.15.27:6815/160015427","state":["exists","up"]},{"osd":4,"uuid":"71e24bc4-db0d-4b7a-89b7-8b8e8befab86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6817","nonce":879922410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6819","nonce":879922410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6823","nonce":879922410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6821","nonce":879922410}]},"public_addr":"172.21.15.50:6817/879922410","cluster_addr":"172.21.15.50:6819/879922410","heartbeat_back_addr":"172.21.15.50:6823/879922410","heartbeat_front_addr":"172.21.15.50:6821/879922410","state":["exists","up"]},{"osd":5,"uuid":"a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6818","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6819","nonce":1955582440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6820","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6821","nonce":1955582440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6824","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6825","nonce":1955582440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6822","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6823","nonce":1955582440}]},"public_addr":"172.21.15.27:6819/1955582440","cluster_addr":"172.21.15.27:6821/1955582440","heartbeat_back_addr":"172.21.15.27:6825/1955582440","heartbeat_front_addr":"172.21.15.27:6823/1955582440","state":["exists","up"]},{"osd":6,"uuid":"e5dc4a17-f0a4-44fc-b24f-3a748f52d2da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6825","nonce":984682970}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6827","nonce":984682970}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6831","nonce":984682970}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6829","nonce":984682970}]},"public_addr":"172.21.15.50:6825/984682970","cluster_addr":"172.21.15.50:6827/984682970","heartbeat_back_addr":"172.21.15.50:6831/984682970","heartbeat_front_addr":"172.21.15.50:6829/984682970","state":["exists","up"]},{"osd":7,"uuid":"44ae8b18-661d-4539-a5e0-42ee6038950e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6826","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6827","nonce":2767612097}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6828","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6829","nonce":2767612097}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6832","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6833","nonce":2767612097}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6830","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6831","nonce":2767612097}]},"public_addr":"172.21.15.27:6827/2767612097","cluster_addr":"172.21.15.27:6829/2767612097","heartbeat_back_addr":"172.21.15.27:6833/2767612097","heartbeat_front_addr":"172.21.15.27:6831/2767612097","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:08.500212+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:12.731876+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:16.785857+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:22.166028+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:24.039767+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:31.449012+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-09-17T00:16:31.130334+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-09-17T00:16:40.432069+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.27:0/1408810721":"2024-09-18T00:14:20.622052+0000","172.21.15.27:0/3255072174":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1432515552":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/3636661985":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1665218822":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/394450365":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1414114567":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1818264085":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3352587923":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:6801/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1803940949":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/3352587923":"2024-09-18T00:14:20.622052+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.440 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.441 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:46.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:47.092 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T00:16:21.138817+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '28', '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-09-17T00:16:47.092 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T00:16:47.326 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:47 smithi027 ceph-mon[25467]: Detected new or changed devices on smithi050 2024-09-17T00:16:47.326 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:47 smithi027 ceph-mon[25467]: Adjusting osd_memory_target on smithi050 to 3729M 2024-09-17T00:16:47.326 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:47 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/109375148' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:16:47.326 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:47 smithi027 ceph-mon[25467]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 132 KiB/s, 0 objects/s recovering 2024-09-17T00:16:47.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:47 smithi050 ceph-mon[34532]: Detected new or changed devices on smithi050 2024-09-17T00:16:47.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:47 smithi050 ceph-mon[34532]: Adjusting osd_memory_target on smithi050 to 3729M 2024-09-17T00:16:47.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:47 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/109375148' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:16:47.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:47 smithi050 ceph-mon[34532]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 132 KiB/s, 0 objects/s recovering 2024-09-17T00:16:47.765 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:48.800 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:48 smithi027 ceph-mon[25467]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T00:16:48.970 INFO:teuthology.orchestra.run.smithi027.stdout:pg_num: 1 2024-09-17T00:16:49.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:48 smithi050 ceph-mon[34532]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T00:16:49.756 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T00:16:49.757 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T00:16:50.019 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:50.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:49 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4141058407' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T00:16:50.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:49 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4141058407' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T00:16:50.801 INFO:teuthology.orchestra.run.smithi027.stdout:[client.0] 2024-09-17T00:16:50.801 INFO:teuthology.orchestra.run.smithi027.stdout: key = AQByyuhmIpDcLxAAjtfJ2ak+BZ0gjTwsP2MUeQ== 2024-09-17T00:16:51.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:50 smithi027 ceph-mon[25467]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-09-17T00:16:51.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:50 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:51.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:50 smithi050 ceph-mon[34532]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-09-17T00:16:51.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:50 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:16:51.529 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:16:51.529 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-17T00:16:51.529 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-17T00:16:51.568 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T00:16:51.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:51 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1512015737' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T00:16:51.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:51 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1512015737' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T00:16:51.840 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi050/config 2024-09-17T00:16:51.961 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:51 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1512015737' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T00:16:51.961 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:51 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1512015737' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T00:16:52.606 INFO:teuthology.orchestra.run.smithi050.stdout:[client.1] 2024-09-17T00:16:52.606 INFO:teuthology.orchestra.run.smithi050.stdout: key = AQB0yuhmX4YRJBAAh3CgoRPa/6cPXXHzPoZaWQ== 2024-09-17T00:16:53.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: Detected new or changed devices on smithi027 2024-09-17T00:16:53.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: Adjusting osd_memory_target on smithi027 to 2960M 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.283 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/634405422' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T00:16:53.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: 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-09-17T00:16:53.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: 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-09-17T00:16:53.284 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:53 smithi027 ceph-mon[25467]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: Detected new or changed devices on smithi027 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: Adjusting osd_memory_target on smithi027 to 2960M 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/634405422' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: 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-09-17T00:16:53.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: 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-09-17T00:16:53.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:53 smithi050 ceph-mon[34532]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-09-17T00:16:54.262 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:16:54.262 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-17T00:16:54.262 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-17T00:16:54.305 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T00:16:54.305 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T00:16:54.305 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T00:16:54.570 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:54.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:54 smithi050 ceph-mon[34532]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T00:16:54.972 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:54 smithi027 ceph-mon[25467]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T00:16:55.296 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:55.988 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:55 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4088019908' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T00:16:56.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:55 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4088019908' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T00:16:56.378 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":19,"flags":0,"active_gid":14217,"active_name":"smithi027.paiqzz","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6800","nonce":2859004466},{"type":"v1","addr":"172.21.15.27:6801","nonce":2859004466}]},"active_addr":"172.21.15.27:6801/2859004466","active_change":"2024-09-17T00:14:20.622166+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14244,"name":"smithi050.eyeebe","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.27:8443/","prometheus":"http://172.21.15.27: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.27:0","nonce":1756700473}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.27:0","nonce":1113057618}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.27:0","nonce":1960756391}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.27:0","nonce":3537351944}]}]} 2024-09-17T00:16:56.381 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T00:16:56.382 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T00:16:56.382 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T00:16:57.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:56 smithi027 ceph-mon[25467]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T00:16:57.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:56 smithi050 ceph-mon[34532]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-09-17T00:16:57.094 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:16:58.403 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:16:58.403 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":42,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","created":"2024-09-17T00:12:26.066269+0000","modified":"2024-09-17T00:16:45.275853+0000","last_up_change":"2024-09-17T00:16:41.491812+0000","last_in_change":"2024-09-17T00:15:48.689595+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-09-17T00:16:21.138817+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"28","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":"f38dd257-25a9-4633-a1be-3e2fbd5afa6d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6801","nonce":1418927641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6803","nonce":1418927641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6807","nonce":1418927641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6805","nonce":1418927641}]},"public_addr":"172.21.15.50:6801/1418927641","cluster_addr":"172.21.15.50:6803/1418927641","heartbeat_back_addr":"172.21.15.50:6807/1418927641","heartbeat_front_addr":"172.21.15.50:6805/1418927641","state":["exists","up"]},{"osd":1,"uuid":"0da922e5-be72-4f76-8623-61381b815564","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6803","nonce":1804109518}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6805","nonce":1804109518}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6809","nonce":1804109518}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6807","nonce":1804109518}]},"public_addr":"172.21.15.27:6803/1804109518","cluster_addr":"172.21.15.27:6805/1804109518","heartbeat_back_addr":"172.21.15.27:6809/1804109518","heartbeat_front_addr":"172.21.15.27:6807/1804109518","state":["exists","up"]},{"osd":2,"uuid":"43dcb551-83f1-417d-a350-54935c1d6bea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6809","nonce":3843349534}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6811","nonce":3843349534}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6815","nonce":3843349534}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6813","nonce":3843349534}]},"public_addr":"172.21.15.50:6809/3843349534","cluster_addr":"172.21.15.50:6811/3843349534","heartbeat_back_addr":"172.21.15.50:6815/3843349534","heartbeat_front_addr":"172.21.15.50:6813/3843349534","state":["exists","up"]},{"osd":3,"uuid":"c72049b3-5523-4ab3-b79f-ecb2fa6c9bef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6811","nonce":160015427}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6813","nonce":160015427}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6816","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6817","nonce":160015427}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6815","nonce":160015427}]},"public_addr":"172.21.15.27:6811/160015427","cluster_addr":"172.21.15.27:6813/160015427","heartbeat_back_addr":"172.21.15.27:6817/160015427","heartbeat_front_addr":"172.21.15.27:6815/160015427","state":["exists","up"]},{"osd":4,"uuid":"71e24bc4-db0d-4b7a-89b7-8b8e8befab86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6817","nonce":879922410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6819","nonce":879922410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6823","nonce":879922410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6821","nonce":879922410}]},"public_addr":"172.21.15.50:6817/879922410","cluster_addr":"172.21.15.50:6819/879922410","heartbeat_back_addr":"172.21.15.50:6823/879922410","heartbeat_front_addr":"172.21.15.50:6821/879922410","state":["exists","up"]},{"osd":5,"uuid":"a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6818","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6819","nonce":1955582440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6820","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6821","nonce":1955582440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6824","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6825","nonce":1955582440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6822","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6823","nonce":1955582440}]},"public_addr":"172.21.15.27:6819/1955582440","cluster_addr":"172.21.15.27:6821/1955582440","heartbeat_back_addr":"172.21.15.27:6825/1955582440","heartbeat_front_addr":"172.21.15.27:6823/1955582440","state":["exists","up"]},{"osd":6,"uuid":"e5dc4a17-f0a4-44fc-b24f-3a748f52d2da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6825","nonce":984682970}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6827","nonce":984682970}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6831","nonce":984682970}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6829","nonce":984682970}]},"public_addr":"172.21.15.50:6825/984682970","cluster_addr":"172.21.15.50:6827/984682970","heartbeat_back_addr":"172.21.15.50:6831/984682970","heartbeat_front_addr":"172.21.15.50:6829/984682970","state":["exists","up"]},{"osd":7,"uuid":"44ae8b18-661d-4539-a5e0-42ee6038950e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6826","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6827","nonce":2767612097}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6828","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6829","nonce":2767612097}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6832","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6833","nonce":2767612097}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6830","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6831","nonce":2767612097}]},"public_addr":"172.21.15.27:6827/2767612097","cluster_addr":"172.21.15.27:6829/2767612097","heartbeat_back_addr":"172.21.15.27:6833/2767612097","heartbeat_front_addr":"172.21.15.27:6831/2767612097","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:08.500212+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:12.731876+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:16.785857+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:22.166028+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:24.039767+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:31.449012+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-09-17T00:16:31.130334+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-09-17T00:16:40.432069+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.27:0/1408810721":"2024-09-18T00:14:20.622052+0000","172.21.15.27:0/3255072174":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1432515552":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/3636661985":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1665218822":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/394450365":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1414114567":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1818264085":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3352587923":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:6801/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1803940949":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/3352587923":"2024-09-18T00:14:20.622052+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T00:16:58.665 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:58 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/698661937' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:16:58.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:58 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/698661937' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:16:59.705 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:16:59 smithi027 ceph-mon[25467]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:16:59.734 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T00:16:59.734 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T00:16:59.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:16:59 smithi050 ceph-mon[34532]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:00.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:00 smithi050 ceph-mon[34532]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:00.869 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:00 smithi027 ceph-mon[25467]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:00.946 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:02.010 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:02.010 INFO:teuthology.orchestra.run.smithi027.stdout:{"epoch":42,"fsid":"5142ec4a-7489-11ef-bceb-c7b262605968","created":"2024-09-17T00:12:26.066269+0000","modified":"2024-09-17T00:16:45.275853+0000","last_up_change":"2024-09-17T00:16:41.491812+0000","last_in_change":"2024-09-17T00:15:48.689595+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-09-17T00:16:21.138817+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"28","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":"f38dd257-25a9-4633-a1be-3e2fbd5afa6d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6801","nonce":1418927641}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6803","nonce":1418927641}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6807","nonce":1418927641}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":1418927641},{"type":"v1","addr":"172.21.15.50:6805","nonce":1418927641}]},"public_addr":"172.21.15.50:6801/1418927641","cluster_addr":"172.21.15.50:6803/1418927641","heartbeat_back_addr":"172.21.15.50:6807/1418927641","heartbeat_front_addr":"172.21.15.50:6805/1418927641","state":["exists","up"]},{"osd":1,"uuid":"0da922e5-be72-4f76-8623-61381b815564","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":30,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6803","nonce":1804109518}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6805","nonce":1804109518}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6809","nonce":1804109518}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":1804109518},{"type":"v1","addr":"172.21.15.27:6807","nonce":1804109518}]},"public_addr":"172.21.15.27:6803/1804109518","cluster_addr":"172.21.15.27:6805/1804109518","heartbeat_back_addr":"172.21.15.27:6809/1804109518","heartbeat_front_addr":"172.21.15.27:6807/1804109518","state":["exists","up"]},{"osd":2,"uuid":"43dcb551-83f1-417d-a350-54935c1d6bea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6809","nonce":3843349534}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6810","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6811","nonce":3843349534}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6815","nonce":3843349534}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3843349534},{"type":"v1","addr":"172.21.15.50:6813","nonce":3843349534}]},"public_addr":"172.21.15.50:6809/3843349534","cluster_addr":"172.21.15.50:6811/3843349534","heartbeat_back_addr":"172.21.15.50:6815/3843349534","heartbeat_front_addr":"172.21.15.50:6813/3843349534","state":["exists","up"]},{"osd":3,"uuid":"c72049b3-5523-4ab3-b79f-ecb2fa6c9bef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6811","nonce":160015427}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6813","nonce":160015427}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6816","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6817","nonce":160015427}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":160015427},{"type":"v1","addr":"172.21.15.27:6815","nonce":160015427}]},"public_addr":"172.21.15.27:6811/160015427","cluster_addr":"172.21.15.27:6813/160015427","heartbeat_back_addr":"172.21.15.27:6817/160015427","heartbeat_front_addr":"172.21.15.27:6815/160015427","state":["exists","up"]},{"osd":4,"uuid":"71e24bc4-db0d-4b7a-89b7-8b8e8befab86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6817","nonce":879922410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6819","nonce":879922410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6823","nonce":879922410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":879922410},{"type":"v1","addr":"172.21.15.50:6821","nonce":879922410}]},"public_addr":"172.21.15.50:6817/879922410","cluster_addr":"172.21.15.50:6819/879922410","heartbeat_back_addr":"172.21.15.50:6823/879922410","heartbeat_front_addr":"172.21.15.50:6821/879922410","state":["exists","up"]},{"osd":5,"uuid":"a8b4023c-b3d6-4e7c-99d8-10c0c8d022ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6818","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6819","nonce":1955582440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6820","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6821","nonce":1955582440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6824","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6825","nonce":1955582440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6822","nonce":1955582440},{"type":"v1","addr":"172.21.15.27:6823","nonce":1955582440}]},"public_addr":"172.21.15.27:6819/1955582440","cluster_addr":"172.21.15.27:6821/1955582440","heartbeat_back_addr":"172.21.15.27:6825/1955582440","heartbeat_front_addr":"172.21.15.27:6823/1955582440","state":["exists","up"]},{"osd":6,"uuid":"e5dc4a17-f0a4-44fc-b24f-3a748f52d2da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6825","nonce":984682970}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6827","nonce":984682970}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6831","nonce":984682970}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":984682970},{"type":"v1","addr":"172.21.15.50:6829","nonce":984682970}]},"public_addr":"172.21.15.50:6825/984682970","cluster_addr":"172.21.15.50:6827/984682970","heartbeat_back_addr":"172.21.15.50:6831/984682970","heartbeat_front_addr":"172.21.15.50:6829/984682970","state":["exists","up"]},{"osd":7,"uuid":"44ae8b18-661d-4539-a5e0-42ee6038950e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6826","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6827","nonce":2767612097}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6828","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6829","nonce":2767612097}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6832","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6833","nonce":2767612097}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6830","nonce":2767612097},{"type":"v1","addr":"172.21.15.27:6831","nonce":2767612097}]},"public_addr":"172.21.15.27:6827/2767612097","cluster_addr":"172.21.15.27:6829/2767612097","heartbeat_back_addr":"172.21.15.27:6833/2767612097","heartbeat_front_addr":"172.21.15.27:6831/2767612097","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:08.500212+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:12.731876+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:16.785857+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:22.166028+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:24.039767+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T00:16:31.449012+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-09-17T00:16:31.130334+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-09-17T00:16:40.432069+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.27:0/1408810721":"2024-09-18T00:14:20.622052+0000","172.21.15.27:0/3255072174":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/111298063":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1432515552":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/3636661985":"2024-09-18T00:12:49.503249+0000","172.21.15.27:0/1665218822":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/394450365":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1414114567":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1818264085":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3352587923":"2024-09-18T00:14:20.622052+0000","172.21.15.27:6800/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:6801/3118564783":"2024-09-18T00:13:22.257695+0000","172.21.15.27:0/1803940949":"2024-09-18T00:12:49.503249+0000","172.21.15.27:6801/3352587923":"2024-09-18T00:14:20.622052+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T00:17:02.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:02 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/602045416' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:17:02.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:02 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/602045416' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T00:17:02.653 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T00:17:02.654 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T00:17:02.654 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T00:17:02.655 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T00:17:02.655 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T00:17:02.656 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T00:17:02.656 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-17T00:17:02.656 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-17T00:17:03.197 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:03 smithi027 ceph-mon[25467]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:03.197 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:03.197 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:03 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:03.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:03 smithi050 ceph-mon[34532]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:03.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:03.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:03 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:04.070 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.071 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.071 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.073 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.075 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.075 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:04.124 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:04 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:04 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:05.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:04 smithi027 ceph-mon[25467]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:05.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:04 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:05.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:04 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:05.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:04 smithi050 ceph-mon[34532]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:05.743 INFO:teuthology.orchestra.run.smithi027.stdout:124554051595 2024-09-17T00:17:05.743 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T00:17:06.077 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:05 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:06.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:05 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:07.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:06 smithi027 ceph-mon[25467]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:07.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:06 smithi050 ceph-mon[34532]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:08.525 INFO:teuthology.orchestra.run.smithi027.stdout:146028888073 2024-09-17T00:17:08.525 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-17T00:17:08.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:08 smithi027 ceph-mon[25467]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:09.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:08 smithi050 ceph-mon[34532]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:09.626 INFO:teuthology.orchestra.run.smithi027.stdout:163208757256 2024-09-17T00:17:09.626 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-17T00:17:09.686 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:10.331 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:10.958 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:10 smithi027 ceph-mon[25467]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:11.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:10 smithi050 ceph-mon[34532]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:11.108 INFO:teuthology.orchestra.run.smithi027.stdout:68719476751 2024-09-17T00:17:11.109 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T00:17:11.580 INFO:teuthology.orchestra.run.smithi027.stdout:146028888073 2024-09-17T00:17:11.580 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T00:17:12.313 INFO:teuthology.orchestra.run.smithi027.stdout:85899345934 2024-09-17T00:17:12.314 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T00:17:13.028 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:12 smithi027 ceph-mon[25467]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:13.055 INFO:teuthology.orchestra.run.smithi027.stdout:103079215117 2024-09-17T00:17:13.055 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T00:17:13.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:12 smithi050 ceph-mon[34532]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:13.714 INFO:teuthology.orchestra.run.smithi027.stdout:128849018891 2024-09-17T00:17:13.715 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T00:17:13.943 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.037 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.039 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.040 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.136 INFO:teuthology.orchestra.run.smithi027.stdout:124554051597 2024-09-17T00:17:14.376 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:14 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1102934501' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T00:17:14.580 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.580 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:14.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:14 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1102934501' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T00:17:14.960 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051595 got 124554051597 for osd.3 2024-09-17T00:17:14.960 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:15.448 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:15 smithi027 ceph-mon[25467]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:15.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:15 smithi050 ceph-mon[34532]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:15.879 INFO:teuthology.orchestra.run.smithi027.stdout:146028888075 2024-09-17T00:17:16.505 INFO:teuthology.orchestra.run.smithi027.stdout:68719476752 2024-09-17T00:17:16.506 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:16 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/262295403' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T00:17:16.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:16 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/262295403' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T00:17:16.693 INFO:teuthology.orchestra.run.smithi027.stdout:163208757257 2024-09-17T00:17:17.150 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:17.269 INFO:teuthology.orchestra.run.smithi027.stdout:146028888075 2024-09-17T00:17:17.269 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:17 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3813007219' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T00:17:17.269 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:17 smithi027 ceph-mon[25467]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:17.269 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:17 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/2709786458' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T00:17:17.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:17 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3813007219' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T00:17:17.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:17 smithi050 ceph-mon[34532]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:17.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:17 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/2709786458' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T00:17:18.020 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888073 got 146028888075 for osd.6 2024-09-17T00:17:18.020 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:18.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:18 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3543851135' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T00:17:18.409 INFO:teuthology.orchestra.run.smithi027.stdout:103079215119 2024-09-17T00:17:18.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:18 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3543851135' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T00:17:19.266 INFO:teuthology.orchestra.run.smithi027.stdout:128849018892 2024-09-17T00:17:19.466 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:19 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1949075039' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T00:17:19.466 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:19 smithi027 ceph-mon[25467]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:19.497 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888073 got 146028888075 for osd.5 2024-09-17T00:17:19.497 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:19 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1949075039' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T00:17:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:19 smithi050 ceph-mon[34532]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:20.133 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215117 got 103079215119 for osd.2 2024-09-17T00:17:20.133 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:20.407 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:20 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/3476384248' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T00:17:20.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:20 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/3476384248' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T00:17:20.767 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018891 got 128849018892 for osd.4 2024-09-17T00:17:20.767 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:21.125 INFO:teuthology.orchestra.run.smithi027.stdout:85899345935 2024-09-17T00:17:21.344 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:21 smithi027 ceph-mon[25467]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:21.345 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:21.345 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:21 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/954450302' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T00:17:21.374 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757256 got 163208757257 for osd.7 2024-09-17T00:17:21.374 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:21 smithi050 ceph-mon[34532]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:21 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/954450302' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T00:17:22.018 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345934 got 85899345935 for osd.1 2024-09-17T00:17:22.018 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:22.312 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476751 got 68719476752 for osd.0 2024-09-17T00:17:22.312 DEBUG:teuthology.parallel:result is None 2024-09-17T00:17:22.312 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T00:17:22.312 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T00:17:22.572 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:22.961 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:22 smithi027 ceph-mon[25467]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:23.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:22 smithi050 ceph-mon[34532]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:23.226 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:23.227 INFO:teuthology.orchestra.run.smithi027.stderr:dumped all 2024-09-17T00:17:24.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:23 smithi027 ceph-mon[25467]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:17:24.071 INFO:teuthology.orchestra.run.smithi027.stdout:{"pg_ready":true,"pg_map":{"version":121,"stamp":"2024-09-17T00:17:22.654103+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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":217,"ondisk_log_size":217,"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":237828,"kb_used_data":4940,"kb_used_omap":12,"kb_used_meta":232691,"kb_avail":749690620,"statfs":{"total":767926730752,"available":767683194880,"internally_reserved":0,"allocated":5058560,"data_stored":3092512,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12749,"internal_metadata":238276147},"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.002094"},"pg_stats":[{"pgid":"1.0","version":"32'217","reported_seq":311,"reported_epoch":42,"state":"active+clean","last_fresh":"2024-09-17T00:16:45.288367+0000","last_change":"2024-09-17T00:16:45.288015+0000","last_active":"2024-09-17T00:16:45.288367+0000","last_peered":"2024-09-17T00:16:45.288367+0000","last_clean":"2024-09-17T00:16:45.288367+0000","last_became_active":"2024-09-17T00:16:45.287699+0000","last_became_peered":"2024-09-17T00:16:45.287699+0000","last_unstale":"2024-09-17T00:16:45.288367+0000","last_undegraded":"2024-09-17T00:16:45.288367+0000","last_fullsized":"2024-09-17T00:16:45.288367+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":26,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T00:16:21.188962+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T00:16:21.188962+0000","last_clean_scrub_stamp":"2024-09-17T00:16:21.188962+0000","objects_scrubbed":0,"log_size":217,"log_dups_size":0,"ondisk_log_size":217,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T02:58:22.954843+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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":2838528,"data_stored":2820752,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757259,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1587,"internal_metadata":27654605},"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":6,"up_from":34,"seq":146028888076,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709468,"statfs":{"total":95990841344,"available":95958495232,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"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":[]},{"osd":5,"up_from":34,"seq":146028888076,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":409600,"data_stored":165176,"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":4,"up_from":30,"seq":128849018893,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":29,"seq":124554051599,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":2,"up_from":24,"seq":103079215120,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":409600,"data_stored":165176,"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":1,"up_from":20,"seq":85899345936,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31592,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709464,"statfs":{"total":95990841344,"available":95958491136,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":68719476754,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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":462848,"data_stored":459280,"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-09-17T00:17:24.072 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T00:17:24.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:23 smithi050 ceph-mon[34532]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:17:24.332 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:24.958 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:24.958 INFO:teuthology.orchestra.run.smithi027.stderr:dumped all 2024-09-17T00:17:25.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:24 smithi027 ceph-mon[25467]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:25.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:24 smithi050 ceph-mon[34532]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:25.587 INFO:teuthology.orchestra.run.smithi027.stdout:{"pg_ready":true,"pg_map":{"version":122,"stamp":"2024-09-17T00:17:24.654554+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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":217,"ondisk_log_size":217,"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":237828,"kb_used_data":4940,"kb_used_omap":12,"kb_used_meta":232691,"kb_avail":749690620,"statfs":{"total":767926730752,"available":767683194880,"internally_reserved":0,"allocated":5058560,"data_stored":3092512,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12749,"internal_metadata":238276147},"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.002257"},"pg_stats":[{"pgid":"1.0","version":"32'217","reported_seq":311,"reported_epoch":42,"state":"active+clean","last_fresh":"2024-09-17T00:16:45.288367+0000","last_change":"2024-09-17T00:16:45.288015+0000","last_active":"2024-09-17T00:16:45.288367+0000","last_peered":"2024-09-17T00:16:45.288367+0000","last_clean":"2024-09-17T00:16:45.288367+0000","last_became_active":"2024-09-17T00:16:45.287699+0000","last_became_peered":"2024-09-17T00:16:45.287699+0000","last_unstale":"2024-09-17T00:16:45.288367+0000","last_undegraded":"2024-09-17T00:16:45.288367+0000","last_fullsized":"2024-09-17T00:16:45.288367+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":26,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T00:16:21.188962+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T00:16:21.188962+0000","last_clean_scrub_stamp":"2024-09-17T00:16:21.188962+0000","objects_scrubbed":0,"log_size":217,"log_dups_size":0,"ondisk_log_size":217,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T02:58:22.954843+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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":166,"num_read_kb":145,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1049648,"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":2838528,"data_stored":2820752,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757259,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1587,"internal_metadata":27654605},"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":6,"up_from":34,"seq":146028888077,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31588,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709468,"statfs":{"total":95990841344,"available":95958495232,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"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":[]},{"osd":5,"up_from":34,"seq":146028888077,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":409600,"data_stored":165176,"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":4,"up_from":30,"seq":128849018893,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":29,"seq":124554051599,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":2,"up_from":24,"seq":103079215120,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":409600,"data_stored":165176,"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":1,"up_from":20,"seq":85899345936,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31592,"kb_used_data":400,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709464,"statfs":{"total":95990841344,"available":95958491136,"internally_reserved":0,"allocated":409600,"data_stored":165176,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":68719476754,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":980,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":1003520,"data_stored":755544,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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":462848,"data_stored":459280,"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-09-17T00:17:25.588 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T00:17:25.588 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T00:17:25.588 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T00:17:25.588 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T00:17:25.848 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:25.982 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:25 smithi027 ceph-mon[25467]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:17:26.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:25 smithi050 ceph-mon[34532]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:17:26.539 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:26.539 INFO:teuthology.orchestra.run.smithi027.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T00:17:26.880 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:26 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/783704100' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T00:17:26.880 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:26 smithi027 ceph-mon[25467]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:27.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:26 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/783704100' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T00:17:27.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:26 smithi050 ceph-mon[34532]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:27.319 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T00:17:27.319 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T00:17:27.319 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:17:27.329 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:17:27.329 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T00:17:27.586 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:28.226 INFO:teuthology.orchestra.run.smithi027.stdout:Backend: cephadm 2024-09-17T00:17:28.226 INFO:teuthology.orchestra.run.smithi027.stdout:Available: Yes 2024-09-17T00:17:28.226 INFO:teuthology.orchestra.run.smithi027.stdout:Paused: No 2024-09-17T00:17:28.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:28 smithi027 ceph-mon[25467]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:28.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:28 smithi027 ceph-mon[25467]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:28.940 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T00:17:29.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:28 smithi050 ceph-mon[34532]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:29.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:28 smithi050 ceph-mon[34532]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:29.196 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:29.938 INFO:teuthology.orchestra.run.smithi027.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T00:17:29.938 INFO:teuthology.orchestra.run.smithi027.stdout:alertmanager.smithi027 smithi027 *:9093,9094 running (2m) 44s ago 3m 26.4M - 0.25.0 c8568f914cd2 1ea1ec96be61 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter.smithi027 smithi027 running (3m) 44s ago 3m 7796k - 19.1.1-330-gc2ddf972 ebb0615149de 7182707fe705 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter.smithi050 smithi050 running (2m) 48s ago 2m 5268k - 19.1.1-330-gc2ddf972 ebb0615149de ccdc0d0e46e2 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:crash.smithi027 smithi027 running (3m) 44s ago 3m 6899k - 19.1.1-330-gc2ddf972 ebb0615149de c6e453fe96e9 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:crash.smithi050 smithi050 running (2m) 48s ago 2m 6895k - 19.1.1-330-gc2ddf972 ebb0615149de 370ec2da4075 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:grafana.smithi027 smithi027 *:3000 running (2m) 44s ago 3m 76.6M - 9.4.12 2bacad6d85d8 d53005058203 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:mgr.smithi027.paiqzz smithi027 *:9283,8765,8443 running (4m) 44s ago 4m 494M - 19.1.1-330-gc2ddf972 ebb0615149de 926beba8ba49 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:mgr.smithi050.eyeebe smithi050 *:8443,9283,8765 running (2m) 48s ago 2m 438M - 19.1.1-330-gc2ddf972 ebb0615149de b384c216e24c 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:mon.smithi027 smithi027 running (4m) 44s ago 5m 47.0M 2048M 19.1.1-330-gc2ddf972 ebb0615149de a2466fb7913a 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:mon.smithi050 smithi050 running (2m) 48s ago 2m 41.0M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 5eee7f70efcb 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter.smithi027 smithi027 *:9100 running (3m) 44s ago 3m 16.2M - 1.5.0 0da6a335fe13 9c5adfd618b2 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter.smithi050 smithi050 *:9100 running (2m) 48s ago 2m 16.3M - 1.5.0 0da6a335fe13 a25a0d1727b1 2024-09-17T00:17:29.939 INFO:teuthology.orchestra.run.smithi027.stdout:osd.0 smithi050 running (87s) 48s ago 87s 36.5M 3729M 19.1.1-330-gc2ddf972 ebb0615149de 5c86f78cafcd 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.1 smithi027 running (83s) 44s ago 82s 45.6M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 205e4361d50a 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.2 smithi050 running (79s) 48s ago 79s 37.2M 3729M 19.1.1-330-gc2ddf972 ebb0615149de e919f6a3aebb 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.3 smithi027 running (74s) 44s ago 73s 49.3M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 5bfa58567a4a 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.4 smithi050 running (72s) 48s ago 71s 36.4M 3729M 19.1.1-330-gc2ddf972 ebb0615149de 868f44211e07 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.5 smithi027 running (64s) 44s ago 64s 28.7M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 32e890881d1c 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.6 smithi050 running (65s) 48s ago 64s 37.2M 3729M 19.1.1-330-gc2ddf972 ebb0615149de e3ed2dc94c1c 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:osd.7 smithi027 running (55s) 44s ago 55s 23.6M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 5c6c93c2eb80 2024-09-17T00:17:29.940 INFO:teuthology.orchestra.run.smithi027.stdout:prometheus.smithi027 smithi027 *:9095 running (2m) 44s ago 3m 44.7M - 2.43.0 a07b618ecd1d 71ab5944e058 2024-09-17T00:17:30.778 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T00:17:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:30 smithi027 ceph-mon[25467]: from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:31.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:30 smithi027 ceph-mon[25467]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:31.044 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:31.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:30 smithi050 ceph-mon[34532]: from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:31.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:30 smithi050 ceph-mon[34532]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:alertmanager ?:9093,9094 1/1 46s ago 4m count:1 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter 2/2 49s ago 4m * 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:crash 2/2 49s ago 4m * 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:grafana ?:3000 1/1 46s ago 4m count:1 2024-09-17T00:17:31.705 INFO:teuthology.orchestra.run.smithi027.stdout:mgr 2/2 49s ago 4m count:2 2024-09-17T00:17:31.706 INFO:teuthology.orchestra.run.smithi027.stdout:mon 2/2 49s ago 3m smithi027:172.21.15.27=smithi027;smithi050:172.21.15.50=smithi050;count:2 2024-09-17T00:17:31.706 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter ?:9100 2/2 49s ago 4m * 2024-09-17T00:17:31.706 INFO:teuthology.orchestra.run.smithi027.stdout:osd.all-available-devices 8 49s ago 2m * 2024-09-17T00:17:31.706 INFO:teuthology.orchestra.run.smithi027.stdout:prometheus ?:9095 1/1 46s ago 4m count:1 2024-09-17T00:17:32.364 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T00:17:32.624 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:33.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:32 smithi027 ceph-mon[25467]: from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:33.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:32 smithi027 ceph-mon[25467]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:33.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:32 smithi050 ceph-mon[34532]: from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:33.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:32 smithi050 ceph-mon[34532]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:33.318 INFO:teuthology.orchestra.run.smithi027.stdout:HOST ADDR LABELS STATUS 2024-09-17T00:17:33.318 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 172.21.15.27 2024-09-17T00:17:33.319 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 172.21.15.50 2024-09-17T00:17:33.319 INFO:teuthology.orchestra.run.smithi027.stdout:2 hosts in cluster 2024-09-17T00:17:33.913 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:33 smithi027 ceph-mon[25467]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:33.941 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T00:17:34.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:33 smithi050 ceph-mon[34532]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:34.196 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:34.785 INFO:teuthology.orchestra.run.smithi027.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331001C400BGN 372G No 42s ago Has a FileSystem, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme1n1 ssd Linux_7d465a72890efe4758b4 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme2n1 ssd Linux_335af928afb879c58ad2 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme3n1 ssd Linux_7c12789a21cf1d43c27c 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme4n1 ssd Linux_64de4a7c5ad7ae78ae1e 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 48s ago Has a FileSystem, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme1n1 ssd Linux_7af83f932fc4aeffc30a 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.786 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme2n1 ssd Linux_6e5d80e7da345e160ab5 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.787 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme3n1 ssd Linux_e8bdc45bb0012c1c1a42 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:34.787 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme4n1 ssd Linux_8b9ffa9139ee1262943d 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:35.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:34 smithi027 ceph-mon[25467]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:35.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:34 smithi050 ceph-mon[34532]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:35.554 INFO:teuthology.run_tasks:Running task vip... 2024-09-17T00:17:35.566 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-17T00:17:35.566 INFO:tasks.vip:peername 172.21.15.27 2024-09-17T00:17:35.570 INFO:tasks.vip:172.21.15.27 in 172.21.0.0/20, pos 3866 2024-09-17T00:17:35.574 INFO:tasks.vip:smithi027.front.sepia.ceph.com static 10.0.15.27, vnet 10.0.0.0/16 2024-09-17T00:17:35.574 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.27')] 2024-09-17T00:17:35.575 DEBUG:teuthology.orchestra.run.smithi027:> sudo ip route ls 2024-09-17T00:17:35.604 INFO:teuthology.orchestra.run.smithi027.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.27 metric 100 2024-09-17T00:17:35.604 INFO:teuthology.orchestra.run.smithi027.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.27 metric 100 2024-09-17T00:17:35.605 INFO:tasks.vip:Configuring 10.0.15.27 on smithi027.front.sepia.ceph.com iface ens1f0... 2024-09-17T00:17:35.606 DEBUG:teuthology.orchestra.run.smithi027:> sudo ip addr add 10.0.15.27/16 dev ens1f0 2024-09-17T00:17:35.674 INFO:tasks.vip:peername 172.21.15.50 2024-09-17T00:17:35.676 INFO:tasks.vip:172.21.15.50 in 172.21.0.0/20, pos 3889 2024-09-17T00:17:35.680 INFO:tasks.vip:smithi050.front.sepia.ceph.com static 10.0.15.50, vnet 10.0.0.0/16 2024-09-17T00:17:35.680 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip route ls 2024-09-17T00:17:35.715 INFO:teuthology.orchestra.run.smithi050.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.50 metric 100 2024-09-17T00:17:35.715 INFO:teuthology.orchestra.run.smithi050.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.50 metric 100 2024-09-17T00:17:35.716 INFO:tasks.vip:Configuring 10.0.15.50 on smithi050.front.sepia.ceph.com iface ens1f0... 2024-09-17T00:17:35.717 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr add 10.0.15.50/16 dev ens1f0 2024-09-17T00:17:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:35 smithi027 ceph-mon[25467]: from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:35.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:35.786 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:17:35.795 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:17:35.795 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-17T00:17:36.052 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:36.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:35 smithi050 ceph-mon[34532]: from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:36.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:35 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331001C400BGN 372G No 44s ago Has a FileSystem, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme1n1 ssd Linux_7d465a72890efe4758b4 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme2n1 ssd Linux_335af928afb879c58ad2 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme3n1 ssd Linux_7c12789a21cf1d43c27c 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme4n1 ssd Linux_64de4a7c5ad7ae78ae1e 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 50s ago Has a FileSystem, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme1n1 ssd Linux_7af83f932fc4aeffc30a 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme2n1 ssd Linux_6e5d80e7da345e160ab5 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.727 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme3n1 ssd Linux_e8bdc45bb0012c1c1a42 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:36.728 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme4n1 ssd Linux_8b9ffa9139ee1262943d 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:17:37.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:36 smithi027 ceph-mon[25467]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:37.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:36 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:17:37.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:36 smithi050 ceph-mon[34532]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:37.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:36 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:17:37.405 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T00:17:37.419 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:17:37.420 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T00:17:37.446 INFO:teuthology.orchestra.run.smithi027.stderr:+ systemctl stop nfs-server 2024-09-17T00:17:37.454 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi050.front.sepia.ceph.com 2024-09-17T00:17:37.454 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T00:17:37.482 INFO:teuthology.orchestra.run.smithi050.stderr:+ systemctl stop nfs-server 2024-09-17T00:17:37.490 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:17:37.506 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:17:37.507 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-17T00:17:38.031 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:37 smithi027 ceph-mon[25467]: from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:38.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:37 smithi050 ceph-mon[34532]: from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:38.240 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:38.913 INFO:teuthology.orchestra.run.smithi027.stdout:Scheduled rgw.foorgw update... 2024-09-17T00:17:38.913 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:38 smithi027 ceph-mon[25467]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:39.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:38 smithi050 ceph-mon[34532]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:40.200 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:40.200 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T00:17:40.200 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.201 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.201 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.201 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.201 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:39 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:39 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:40.941 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.27/16' 2024-09-17T00:17:41.216 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:40 smithi027 ceph-mon[25467]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:41.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:40 smithi050 ceph-mon[34532]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:41.630 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:42.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:42 smithi050 ceph-mon[34532]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:43.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:42 smithi027 ceph-mon[25467]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:44.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.27/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:44.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:17:44.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:43 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.27/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:44.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:43 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:45.271 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T00:17:45.271 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:44 smithi027 ceph-mon[25467]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T00:17:45.271 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:44 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T00:17:45.271 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:44 smithi027 ceph-mon[25467]: pgmap v133: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:45.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T00:17:45.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:44 smithi050 ceph-mon[34532]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T00:17:45.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:44 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T00:17:45.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:44 smithi050 ceph-mon[34532]: pgmap v133: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:45.745 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T00:17:45.755 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:17:45.755 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-17T00:17:45.784 INFO:teuthology.orchestra.run.smithi027.stderr:+ dnf install -y python3-boto3 2024-09-17T00:17:45.977 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: Saving service nfs.foo spec with placement count:1 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T00:17:45.978 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:45 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:46.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:17:46.342 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T00:17:46.342 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T00:17:46.343 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: Saving service nfs.foo spec with placement count:1 2024-09-17T00:17:46.343 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:46.343 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T00:17:46.343 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:45 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:46.369 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:07:44 ago on Tue 17 Sep 2024 12:10:02 AM UTC. 2024-09-17T00:17:46.514 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-17T00:17:46.515 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout:Install 5 Packages 2024-09-17T00:17:46.516 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:46.525 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 6.6 M 2024-09-17T00:17:46.525 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 86 M 2024-09-17T00:17:46.525 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-09-17T00:17:46.806 INFO:teuthology.orchestra.run.smithi027.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 2.6 MB/s | 164 kB 00:00 2024-09-17T00:17:46.889 INFO:teuthology.orchestra.run.smithi027.stdout:(2/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 1.4 MB/s | 215 kB 00:00 2024-09-17T00:17:46.973 INFO:teuthology.orchestra.run.smithi027.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 1.3 MB/s | 113 kB 00:00 2024-09-17T00:17:47.114 INFO:teuthology.orchestra.run.smithi027.stdout:(4/5): python3-botocore-1.31.62-2.el9.noarch.rp 20 MB/s | 6.1 MB 00:00 2024-09-17T00:17:47.140 INFO:teuthology.orchestra.run.smithi027.stdout:(5/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 126 kB/s | 50 kB 00:00 2024-09-17T00:17:47.142 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-09-17T00:17:47.143 INFO:teuthology.orchestra.run.smithi027.stdout:Total 11 MB/s | 6.6 MB 00:00 2024-09-17T00:17:47.167 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-09-17T00:17:47.183 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-09-17T00:17:47.183 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-09-17T00:17:47.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:46 smithi027 ceph-mon[25467]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T00:17:47.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:46 smithi027 ceph-mon[25467]: pgmap v136: 33 pgs: 5 creating+peering, 11 unknown, 17 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:47.297 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-09-17T00:17:47.298 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-09-17T00:17:47.336 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:46 smithi050 ceph-mon[34532]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T00:17:47.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:46 smithi050 ceph-mon[34532]: pgmap v136: 33 pgs: 5 creating+peering, 11 unknown, 17 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:47.561 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-09-17T00:17:47.685 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-17T00:17:48.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:47 smithi027 ceph-mon[25467]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:17:48.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:47 smithi027 ceph-mon[25467]: Cluster is now healthy 2024-09-17T00:17:48.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:47 smithi027 ceph-mon[25467]: mgrmap e20: smithi027.paiqzz(active, since 3m), standbys: smithi050.eyeebe 2024-09-17T00:17:48.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:47 smithi050 ceph-mon[34532]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:17:48.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:47 smithi050 ceph-mon[34532]: Cluster is now healthy 2024-09-17T00:17:48.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:47 smithi050 ceph-mon[34532]: mgrmap e20: smithi027.paiqzz(active, since 3m), standbys: smithi050.eyeebe 2024-09-17T00:17:49.130 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-17T00:17:49.240 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-17T00:17:49.328 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-17T00:17:49.401 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.clurkz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.clurkz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:49.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:49.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: Deploying daemon rgw.foorgw.smithi050.clurkz on smithi050 2024-09-17T00:17:49.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:49 smithi050 ceph-mon[34532]: pgmap v137: 33 pgs: 5 creating+peering, 11 unknown, 17 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:49.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.clurkz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.clurkz", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: Deploying daemon rgw.foorgw.smithi050.clurkz on smithi050 2024-09-17T00:17:49.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:49 smithi027 ceph-mon[25467]: pgmap v137: 33 pgs: 5 creating+peering, 11 unknown, 17 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:17:50.725 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T00:17:50.725 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-17T00:17:50.725 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-17T00:17:50.725 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-17T00:17:50.725 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-17T00:17:50.807 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:50 smithi050 ceph-mon[34532]: pgmap v138: 33 pgs: 33 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:50.807 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:50 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:50.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:50 smithi027 ceph-mon[25467]: pgmap v138: 33 pgs: 33 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:50.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:50 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:17:51.043 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-17T00:17:51.043 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:51.043 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-09-17T00:17:51.043 INFO:teuthology.orchestra.run.smithi027.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-17T00:17:51.044 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-17T00:17:51.044 INFO:teuthology.orchestra.run.smithi027.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T00:17:51.044 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:17:51.044 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-09-17T00:17:51.257 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:17:51.325 INFO:teuthology.orchestra.run.smithi027.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-17T00:17:51.581 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring fsid 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:17:51.649 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:17:52.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi027.zxvvnk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi027.zxvvnk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: Deploying daemon rgw.foorgw.smithi027.zxvvnk on smithi027 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/127353015' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T00:17:52.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:52 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi027.zxvvnk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi027.zxvvnk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:52.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: Deploying daemon rgw.foorgw.smithi027.zxvvnk on smithi027 2024-09-17T00:17:52.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T00:17:52.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/127353015' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T00:17:52.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:52 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T00:17:52.934 INFO:teuthology.orchestra.run.smithi027.stderr:Using ceph image with id 'ebb0615149de' and tag 'c2ddf9721ef254645201cdbabd9c8f49c30a586f' created on 2024-09-16 16:14:04 +0000 UTC 2024-09-17T00:17:52.934 INFO:teuthology.orchestra.run.smithi027.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3 2024-09-17T00:17:53.308 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:53 smithi027 ceph-mon[25467]: pgmap v140: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:53.308 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:53 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T00:17:53.308 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:53 smithi027 ceph-mon[25467]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T00:17:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:53 smithi050 ceph-mon[34532]: pgmap v140: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:53 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T00:17:53.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:53 smithi050 ceph-mon[34532]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T00:17:54.588 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:54.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:54.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:54 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:54.655 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:17:54.655 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-09-17T00:17:54.656 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi027.dhiekt-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T00:17:54.657 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:54 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:17:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T00:17:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Creating key for client.nfs.foo.0.0.smithi027.dhiekt 2024-09-17T00:17:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T00:17:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Rados config object exists: conf-nfs.foo 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Creating key for client.nfs.foo.0.0.smithi027.dhiekt-rgw 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Bind address in nfs.foo.0.0.smithi027.dhiekt's ganesha conf is defaulting to empty 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: Deploying daemon nfs.foo.0.0.smithi027.dhiekt on smithi027 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: pgmap v143: 97 pgs: 55 unknown, 42 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T00:17:56.534 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T00:17:56.535 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:56 smithi027 ceph-mon[25467]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Creating key for client.nfs.foo.0.0.smithi027.dhiekt 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Rados config object exists: conf-nfs.foo 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Creating key for client.nfs.foo.0.0.smithi027.dhiekt-rgw 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Bind address in nfs.foo.0.0.smithi027.dhiekt's ganesha conf is defaulting to empty 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: Deploying daemon nfs.foo.0.0.smithi027.dhiekt on smithi027 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: pgmap v143: 97 pgs: 55 unknown, 42 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T00:17:56.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:56 smithi050 ceph-mon[34532]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T00:17:57.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T00:17:57.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: pgmap v146: 129 pgs: 10 creating+peering, 32 unknown, 87 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:57 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: pgmap v146: 129 pgs: 10 creating+peering, 32 unknown, 87 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.589 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.590 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.590 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:57.590 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:57 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:17:59.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:58 smithi027 ceph-mon[25467]: Deploying daemon haproxy.nfs.foo.smithi027.ngrkir on smithi027 2024-09-17T00:17:59.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:58 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:58 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:58 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:58 smithi027 ceph-mon[25467]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T00:17:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:58 smithi050 ceph-mon[34532]: Deploying daemon haproxy.nfs.foo.smithi027.ngrkir on smithi027 2024-09-17T00:17:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:58 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:58 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:58 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T00:17:59.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:58 smithi050 ceph-mon[34532]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T00:18:00.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T00:18:00.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:17:59 smithi027 ceph-mon[25467]: pgmap v149: 161 pgs: 10 creating+peering, 64 unknown, 87 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T00:18:00.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:17:59 smithi050 ceph-mon[34532]: pgmap v149: 161 pgs: 10 creating+peering, 64 unknown, 87 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:18:00.988 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:00.988 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:00.988 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:00.988 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T00:18:00.989 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:00.989 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:00.989 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:00.989 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:00 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.50:0/4277951635' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:01.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:01.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:01.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:00 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:01.666 INFO:teuthology.run_tasks:Running task python... 2024-09-17T00:18:01.715 INFO:tasks.python:Running python on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:01.715 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-09-17T00:18:01.716 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: pgmap v152: 161 pgs: 17 creating+peering, 8 unknown, 136 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:18:01.998 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:01 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:02.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:02.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: from='client.? ' entity='client.rgw.foorgw.smithi050.clurkz' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:02.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/4081614289' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:02.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T00:18:02.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: pgmap v152: 161 pgs: 17 creating+peering, 8 unknown, 136 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T00:18:02.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:01 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:03.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:02 smithi027 ceph-mon[25467]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:03.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:02 smithi027 ceph-mon[25467]: Cluster is now healthy 2024-09-17T00:18:03.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:02 smithi050 ceph-mon[34532]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:03.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:02 smithi050 ceph-mon[34532]: Cluster is now healthy 2024-09-17T00:18:03.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:03 smithi027 ceph-mon[25467]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T00:18:03.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:03 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T00:18:03.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:03 smithi027 ceph-mon[25467]: pgmap v154: 193 pgs: 32 unknown, 11 creating+peering, 150 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 79 KiB/s rd, 4.2 KiB/s wr, 157 op/s 2024-09-17T00:18:04.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:03 smithi050 ceph-mon[34532]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T00:18:04.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:03 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T00:18:04.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:03 smithi050 ceph-mon[34532]: pgmap v154: 193 pgs: 32 unknown, 11 creating+peering, 150 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 79 KiB/s rd, 4.2 KiB/s wr, 157 op/s 2024-09-17T00:18:05.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:18:05.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T00:18:05.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T00:18:05.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:05.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:05.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:05.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:04 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:05.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:04 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: Deploying daemon haproxy.nfs.foo.smithi050.fzjtmr on smithi050 2024-09-17T00:18:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: pgmap v157: 193 pgs: 23 unknown, 170 active+clean; 580 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 122 KiB/s rd, 3.5 KiB/s wr, 244 op/s 2024-09-17T00:18:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T00:18:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:06.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:05 smithi027 ceph-mon[25467]: Cluster is now healthy 2024-09-17T00:18:06.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: Deploying daemon haproxy.nfs.foo.smithi050.fzjtmr on smithi050 2024-09-17T00:18:06.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T00:18:06.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: pgmap v157: 193 pgs: 23 unknown, 170 active+clean; 580 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 122 KiB/s rd, 3.5 KiB/s wr, 244 op/s 2024-09-17T00:18:06.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T00:18:06.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:06.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:05 smithi050 ceph-mon[34532]: Cluster is now healthy 2024-09-17T00:18:06.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:06 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:06.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:06 smithi027 ceph-mon[25467]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T00:18:06.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:06 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T00:18:07.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:06 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:07.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:06 smithi050 ceph-mon[34532]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T00:18:07.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:06 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T00:18:07.749 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:18:07.760 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:07.761 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-17T00:18:08.029 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:08.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:07 smithi027 ceph-mon[25467]: pgmap v159: 225 pgs: 10 creating+peering, 22 unknown, 193 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 215 KiB/s rd, 7.0 KiB/s wr, 432 op/s 2024-09-17T00:18:08.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:07 smithi027 ceph-mon[25467]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:18:08.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:07 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T00:18:08.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:07 smithi027 ceph-mon[25467]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T00:18:08.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:07 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T00:18:08.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:07 smithi050 ceph-mon[34532]: pgmap v159: 225 pgs: 10 creating+peering, 22 unknown, 193 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 215 KiB/s rd, 7.0 KiB/s wr, 432 op/s 2024-09-17T00:18:08.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:07 smithi050 ceph-mon[34532]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T00:18:08.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:07 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T00:18:08.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:07 smithi050 ceph-mon[34532]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T00:18:08.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:07 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T00:18:08.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:08 smithi027 ceph-mon[25467]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T00:18:08.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:08 smithi027 ceph-mon[25467]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T00:18:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:08 smithi050 ceph-mon[34532]: from='client.? 172.21.15.27:0/1943610642' entity='client.rgw.foorgw.smithi027.zxvvnk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T00:18:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:08 smithi050 ceph-mon[34532]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout:{ 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout: "bind": "/foobucket", 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout: "cluster": "foo", 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout: "mode": "RW", 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout: "path": "foobucket", 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout: "squash": "none" 2024-09-17T00:18:09.126 INFO:teuthology.orchestra.run.smithi027.stdout:} 2024-09-17T00:18:09.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:09 smithi027 ceph-mon[25467]: pgmap v162: 225 pgs: 10 creating+peering, 22 unknown, 193 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 168 KiB/s rd, 5.7 KiB/s wr, 337 op/s 2024-09-17T00:18:09.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:09 smithi027 ceph-mon[25467]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:09.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:09 smithi027 ceph-mon[25467]: Cluster is now healthy 2024-09-17T00:18:09.783 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:09 smithi027 ceph-mon[25467]: from='client.14690 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:09.861 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:09 smithi050 ceph-mon[34532]: pgmap v162: 225 pgs: 10 creating+peering, 22 unknown, 193 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 168 KiB/s rd, 5.7 KiB/s wr, 337 op/s 2024-09-17T00:18:09.861 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:09 smithi050 ceph-mon[34532]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T00:18:09.862 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:09 smithi050 ceph-mon[34532]: Cluster is now healthy 2024-09-17T00:18:09.862 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:09 smithi050 ceph-mon[34532]: from='client.14690 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:09.896 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T00:18:09.913 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-17T00:18:09.914 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:10.178 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:10.807 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:10.807 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:04.274334Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:11.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:10 smithi027 ceph-mon[25467]: pgmap v163: 225 pgs: 10 creating+peering, 215 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 120 KiB/s rd, 4.2 KiB/s wr, 238 op/s 2024-09-17T00:18:11.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:10 smithi050 ceph-mon[34532]: pgmap v163: 225 pgs: 10 creating+peering, 215 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 120 KiB/s rd, 4.2 KiB/s wr, 238 op/s 2024-09-17T00:18:11.806 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:12.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: 10.0.31.27 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: 10.0.31.27 is in 10.0.0.0/16 on smithi027 interface ens1f0 2024-09-17T00:18:12.033 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:11 smithi027 ceph-mon[25467]: Deploying daemon keepalived.nfs.foo.smithi050.cdmjwn on smithi050 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: 10.0.31.27 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: 10.0.31.27 is in 10.0.0.0/16 on smithi027 interface ens1f0 2024-09-17T00:18:12.289 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:11 smithi050 ceph-mon[34532]: Deploying daemon keepalived.nfs.foo.smithi050.cdmjwn on smithi050 2024-09-17T00:18:12.806 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:13.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:12 smithi050 ceph-mon[34532]: pgmap v164: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 585 B/s wr, 21 op/s 2024-09-17T00:18:13.093 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:13.214 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:12 smithi027 ceph-mon[25467]: pgmap v164: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 585 B/s wr, 21 op/s 2024-09-17T00:18:13.755 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:13.756 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:10.953298Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:14.503 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:15.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:14 smithi027 ceph-mon[25467]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:15.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:14 smithi027 ceph-mon[25467]: pgmap v165: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 15 KiB/s rd, 639 B/s wr, 22 op/s 2024-09-17T00:18:15.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:14 smithi050 ceph-mon[34532]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:15.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:14 smithi050 ceph-mon[34532]: pgmap v165: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 15 KiB/s rd, 639 B/s wr, 22 op/s 2024-09-17T00:18:15.504 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:15.781 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:16.479 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:16.480 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:10.953298Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:16.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:16 smithi050 ceph-mon[34532]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:16.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:16 smithi050 ceph-mon[34532]: pgmap v166: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 512 B/s wr, 18 op/s 2024-09-17T00:18:17.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:16 smithi027 ceph-mon[25467]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:17.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:16 smithi027 ceph-mon[25467]: pgmap v166: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 512 B/s wr, 18 op/s 2024-09-17T00:18:17.125 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:18.126 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:18.404 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:19.096 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:19.096 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:18.314966Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: 10.0.31.27 is in 10.0.0.0/16 on smithi027 interface ens1f0 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: 10.0.31.27 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: Deploying daemon keepalived.nfs.foo.smithi027.gphuww on smithi027 2024-09-17T00:18:19.458 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:19 smithi027 ceph-mon[25467]: pgmap v167: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 466 B/s wr, 16 op/s 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: 10.0.31.27 is in 10.0.0.0/16 on smithi027 interface ens1f0 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: 10.0.31.27 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: Deploying daemon keepalived.nfs.foo.smithi027.gphuww on smithi027 2024-09-17T00:18:19.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:19 smithi050 ceph-mon[34532]: pgmap v167: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 466 B/s wr, 16 op/s 2024-09-17T00:18:20.086 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:20.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:20 smithi050 ceph-mon[34532]: from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:20.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:20 smithi027 ceph-mon[25467]: from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:21.087 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:21.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1", "id": [4, 6]}]: dispatch 2024-09-17T00:18:21.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.b", "id": [5, 3]}]: dispatch 2024-09-17T00:18:21.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:21 smithi027 ceph-mon[25467]: pgmap v168: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 15 op/s 2024-09-17T00:18:21.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:21.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:21 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1", "id": [4, 6]}]: dispatch 2024-09-17T00:18:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.b", "id": [5, 3]}]: dispatch 2024-09-17T00:18:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:21 smithi050 ceph-mon[34532]: pgmap v168: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 15 op/s 2024-09-17T00:18:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:21.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:21 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:22.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1", "id": [4, 6]}]': finished 2024-09-17T00:18:22.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:22 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.b", "id": [5, 3]}]': finished 2024-09-17T00:18:22.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:22 smithi050 ceph-mon[34532]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T00:18:22.668 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:22.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1", "id": [4, 6]}]': finished 2024-09-17T00:18:22.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:22 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.b", "id": [5, 3]}]': finished 2024-09-17T00:18:22.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:22 smithi027 ceph-mon[25467]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T00:18:23.501 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:23.501 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:18.314966Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:23.586 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:23 smithi050 ceph-mon[34532]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T00:18:23.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:23 smithi050 ceph-mon[34532]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:23.641 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:23 smithi027 ceph-mon[25467]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T00:18:23.641 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:23 smithi027 ceph-mon[25467]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:24.391 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:24.588 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:24 smithi027 ceph-mon[25467]: from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:24.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:24 smithi050 ceph-mon[34532]: from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:25.393 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:25.523 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:25 smithi027 ceph-mon[25467]: pgmap v172: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:25.815 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:25.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:25 smithi050 ceph-mon[34532]: pgmap v172: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:26.458 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:26.459 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:18.314966Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:27.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:26 smithi027 ceph-mon[25467]: from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:27.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:26 smithi027 ceph-mon[25467]: pgmap v173: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:27.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:26 smithi050 ceph-mon[34532]: from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:27.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:26 smithi050 ceph-mon[34532]: pgmap v173: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T00:18:27.312 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:28.313 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:28.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:28 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:28 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:28 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:28 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:28 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:28.762 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:28.886 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.886 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.886 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.886 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:28.886 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:28 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:29.425 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:29.425 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:38.959952Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:38.960047Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:27.583133Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:38.960194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:38.960264Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:38.960122Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:38.960334Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T00:18:29.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:29 smithi027 ceph-mon[25467]: pgmap v174: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:18:29.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:29 smithi050 ceph-mon[34532]: pgmap v174: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail 2024-09-17T00:18:30.249 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:30.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:30 smithi027 ceph-mon[25467]: from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:30.833 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:30 smithi050 ceph-mon[34532]: from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:31.250 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:31.531 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:31.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:31 smithi050 ceph-mon[34532]: pgmap v175: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-09-17T00:18:31.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:31.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:31.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:31 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:31.853 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:31 smithi027 ceph-mon[25467]: pgmap v175: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-09-17T00:18:31.853 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:31.853 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:31.853 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:31 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:32.461 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:32.461 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:42.858654Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:42.858796Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:27.583133Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "last_refresh": "2024-09-17T00:18:31.243879Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:42.858498Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:42.858335Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:42.858938Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:42.859498Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "last_refresh": "2024-09-17T00:18:31.243803Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T00:18:33.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:32 smithi027 ceph-mon[25467]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:33.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:32 smithi027 ceph-mon[25467]: pgmap v176: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-09-17T00:18:33.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:32 smithi050 ceph-mon[34532]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:33.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:32 smithi050 ceph-mon[34532]: pgmap v176: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-09-17T00:18:33.276 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:34.277 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:34.980 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:35.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:34 smithi027 ceph-mon[25467]: pgmap v177: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T00:18:35.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:34 smithi050 ceph-mon[34532]: pgmap v177: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T00:18:36.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:35 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:36.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:35 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:36.267 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:36.267 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:17:42.859078Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:17:42.858654Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:17:42.858796Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:17:42.859221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:27.583133Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "last_refresh": "2024-09-17T00:18:31.243879Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:17:42.858498Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:17:42.858335Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:17:56.992218Z 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-09-17T00:17:44.939281Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:17:42.858938Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:17:42.859498Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:17:42.859364Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "last_refresh": "2024-09-17T00:18:31.243803Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T00:18:37.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:36 smithi027 ceph-mon[25467]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:37.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:36 smithi027 ceph-mon[25467]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:18:37.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:36 smithi050 ceph-mon[34532]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:37.088 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:36 smithi050 ceph-mon[34532]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:18:37.538 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T00:18:38.540 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:38.827 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:39.127 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.127 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.127 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:18:39.127 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:18:39.127 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: Checking dashboard <-> RGW credentials 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.128 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:38 smithi027 ceph-mon[25467]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: Checking dashboard <-> RGW credentials 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:18:39.337 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:39.338 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:38 smithi050 ceph-mon[34532]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:18:39.519 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:39.519 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:18:37.863698Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:18:31.243035Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:18:31.243141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:18:37.863769Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:27.583133Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "last_refresh": "2024-09-17T00:18:31.243879Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:18:31.243307Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:18:31.243386Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:18:38.658581Z 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-09-17T00:17:44.939281Z", "last_refresh": "2024-09-17T00:18:37.864268Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:18:31.243225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:18:31.243464Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:18:37.863839Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "last_refresh": "2024-09-17T00:18:31.243803Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T00:18:40.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:40 smithi027 ceph-mon[25467]: Reconfiguring prometheus.smithi027 (dependencies changed)... 2024-09-17T00:18:40.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:40 smithi027 ceph-mon[25467]: Reconfiguring daemon prometheus.smithi027 on smithi027 2024-09-17T00:18:40.945 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:40 smithi027 ceph-mon[25467]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:40.977 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-17T00:18:40.978 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T00:18:40.989 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-17T00:18:40.990 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T00:18:41.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:40 smithi050 ceph-mon[34532]: Reconfiguring prometheus.smithi027 (dependencies changed)... 2024-09-17T00:18:41.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:40 smithi050 ceph-mon[34532]: Reconfiguring daemon prometheus.smithi027 on smithi027 2024-09-17T00:18:41.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:40 smithi050 ceph-mon[34532]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:41.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:41 smithi027 ceph-mon[25467]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 341 B/s wr, 1 op/s 2024-09-17T00:18:41.898 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:41 smithi050 ceph-mon[34532]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 341 B/s wr, 1 op/s 2024-09-17T00:18:43.001 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:42 smithi027 ceph-mon[25467]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:43.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:42 smithi050 ceph-mon[34532]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:43.129 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:43.827 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-09-17T00:18:43.827 INFO:teuthology.orchestra.run.smithi027.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T00:13:12.882039Z", "last_refresh": "2024-09-17T00:18:37.863698Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:31.716877Z 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-09-17T00:13:06.559328Z", "last_refresh": "2024-09-17T00:18:31.243035Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:34.748536Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T00:13:05.322134Z", "last_refresh": "2024-09-17T00:18:31.243141Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T00:13:09.554112Z", "last_refresh": "2024-09-17T00:18:37.863769Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:18:27.583133Z 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.27/16"}, "status": {"created": "2024-09-17T00:17:44.945909Z", "last_refresh": "2024-09-17T00:18:31.243879Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.27/16"}}, {"events": ["2024-09-17T00:14:42.303686Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T00:13:03.334383Z", "last_refresh": "2024-09-17T00:18:31.243307Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:51.246402Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi027:172.21.15.27=smithi027", "smithi050:172.21.15.50=smithi050"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T00:13:45.163063Z", "last_refresh": "2024-09-17T00:18:31.243386Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T00:18:38.658581Z 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-09-17T00:17:44.939281Z", "last_refresh": "2024-09-17T00:18:37.864268Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:14:39.347653Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T00:13:11.691156Z", "last_refresh": "2024-09-17T00:18:31.243225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T00:14:57.306414Z 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-09-17T00:14:57.300834Z", "last_refresh": "2024-09-17T00:18:31.243464Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T00:14:51.250980Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T00:13:08.239572Z", "last_refresh": "2024-09-17T00:18:37.863839Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T00:17:54.124074Z 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-09-17T00:17:54.114187Z", "last_refresh": "2024-09-17T00:18:31.243803Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T00:18:44.948 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:44 smithi027 ceph-mon[25467]: from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:44.948 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:44 smithi027 ceph-mon[25467]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:45.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:44 smithi050 ceph-mon[34532]: from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T00:18:45.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:44 smithi050 ceph-mon[34532]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:45.104 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-17T00:18:45.104 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T00:18:45.115 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:45.116 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-17T00:18:45.144 INFO:teuthology.orchestra.run.smithi027.stderr:+ mkdir /mnt/foo 2024-09-17T00:18:45.156 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-17T00:18:45.224 INFO:teuthology.orchestra.run.smithi027.stderr:+ sleep 5 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:47.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:46 smithi027 ceph-mon[25467]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:47.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:46 smithi050 ceph-mon[34532]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T00:18:49.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:48 smithi027 ceph-mon[25467]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T00:18:49.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:48 smithi050 ceph-mon[34532]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T00:18:50.228 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.27:/foobucket /mnt/foo' 2024-09-17T00:18:50.294 INFO:teuthology.orchestra.run.smithi027.stderr:+ mount -t nfs 10.0.31.27:/foobucket /mnt/foo 2024-09-17T00:18:50.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:50 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:50.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:50 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:50.729 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:50 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:50.730 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:50 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:51.000 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-17T00:18:51.066 INFO:teuthology.orchestra.run.smithi027.stderr:+ find /mnt/foo -ls 2024-09-17T00:18:51.070 INFO:teuthology.orchestra.run.smithi027.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 17 00:18 /mnt/foo 2024-09-17T00:18:51.071 INFO:teuthology.orchestra.run.smithi027.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 17 00:18 /mnt/foo/myobject 2024-09-17T00:18:51.072 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-17T00:18:51.138 INFO:teuthology.orchestra.run.smithi027.stderr:+ grep thebody /mnt/foo/myobject 2024-09-17T00:18:51.141 INFO:teuthology.orchestra.run.smithi027.stdout:thebody 2024-09-17T00:18:51.143 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-17T00:18:51.207 INFO:teuthology.orchestra.run.smithi027.stderr:+ echo test 2024-09-17T00:18:51.222 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-17T00:18:51.287 INFO:teuthology.orchestra.run.smithi027.stderr:+ sync 2024-09-17T00:18:51.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:51 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:51.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:51 smithi027 ceph-mon[25467]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T00:18:51.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:51 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:18:51.587 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:51 smithi050 ceph-mon[34532]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T00:18:51.659 INFO:teuthology.run_tasks:Running task python... 2024-09-17T00:18:51.671 INFO:tasks.python:Running python on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:51.672 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-09-17T00:18:51.672 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T00:18:51.997 INFO:teuthology.orchestra.run.smithi027.stdout:b'test\n' 2024-09-17T00:18:52.063 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T00:18:52.073 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:52.073 DEBUG:teuthology.orchestra.run.smithi027:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-17T00:18:52.098 INFO:teuthology.orchestra.run.smithi027.stderr:+ umount /mnt/foo 2024-09-17T00:18:52.115 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:18:52.125 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:52.125 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-17T00:18:52.899 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:53.021 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:52 smithi027 ceph-mon[25467]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 4.4 KiB/s rd, 426 B/s wr, 5 op/s 2024-09-17T00:18:53.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:52 smithi050 ceph-mon[34532]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 4.4 KiB/s rd, 426 B/s wr, 5 op/s 2024-09-17T00:18:55.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:54 smithi027 ceph-mon[25467]: from='client.24481 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:55.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:54 smithi027 ceph-mon[25467]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 426 B/s wr, 5 op/s 2024-09-17T00:18:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:54 smithi050 ceph-mon[34532]: from='client.24481 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:55.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:54 smithi050 ceph-mon[34532]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 426 B/s wr, 5 op/s 2024-09-17T00:18:55.092 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-17T00:18:55.475 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:56.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:18:56.532 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: Checking dashboard <-> RGW credentials 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:56.533 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:56 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.815 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.815 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.815 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:18:56.815 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: Checking dashboard <-> RGW credentials 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T00:18:56.816 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:56 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:18:56.904 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T00:18:56.915 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:18:56.916 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-17T00:18:57.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:57 smithi050 ceph-mon[34532]: from='client.14836 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:57.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:57 smithi050 ceph-mon[34532]: Remove service ingress.nfs.foo 2024-09-17T00:18:57.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:57 smithi050 ceph-mon[34532]: Remove service nfs.foo 2024-09-17T00:18:57.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:57 smithi050 ceph-mon[34532]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T00:18:57.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:57 smithi027 ceph-mon[25467]: from='client.14836 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:18:57.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:57 smithi027 ceph-mon[25467]: Remove service ingress.nfs.foo 2024-09-17T00:18:57.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:57 smithi027 ceph-mon[25467]: Remove service nfs.foo 2024-09-17T00:18:57.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:57 smithi027 ceph-mon[25467]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T00:18:57.839 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:18:58.366 INFO:teuthology.orchestra.run.smithi027.stdout:167 167 2024-09-17T00:18:58.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:18:58 smithi050 ceph-mon[34532]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T00:18:59.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:18:58 smithi027 ceph-mon[25467]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T00:18:59.404 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T00:18:59.787 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:01.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:00 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:01.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:00 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:01.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:00 smithi050 ceph-mon[34532]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T00:19:01.171 INFO:teuthology.orchestra.run.smithi027.stdout:Backend: cephadm 2024-09-17T00:19:01.172 INFO:teuthology.orchestra.run.smithi027.stdout:Available: Yes 2024-09-17T00:19:01.172 INFO:teuthology.orchestra.run.smithi027.stdout:Paused: No 2024-09-17T00:19:01.172 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:00 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:01.172 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:00 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:01.172 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:00 smithi027 ceph-mon[25467]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T00:19:02.007 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:01 smithi027 ceph-mon[25467]: from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:02.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:01 smithi050 ceph-mon[34532]: from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:02.135 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T00:19:02.535 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:02.926 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:02 smithi027 ceph-mon[25467]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T00:19:03.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:02 smithi050 ceph-mon[34532]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T00:19:03.559 INFO:teuthology.orchestra.run.smithi027.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:alertmanager.smithi027 smithi027 *:9093,9094 running (3m) 8s ago 5m 26.4M - 0.25.0 c8568f914cd2 1ea1ec96be61 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter.smithi027 smithi027 running (5m) 8s ago 5m 8506k - 19.1.1-330-gc2ddf972 ebb0615149de 7182707fe705 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter.smithi050 smithi050 running (4m) 3s ago 4m 5268k - 19.1.1-330-gc2ddf972 ebb0615149de ccdc0d0e46e2 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:crash.smithi027 smithi027 running (5m) 8s ago 5m 6899k - 19.1.1-330-gc2ddf972 ebb0615149de c6e453fe96e9 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:crash.smithi050 smithi050 running (4m) 3s ago 4m 6895k - 19.1.1-330-gc2ddf972 ebb0615149de 370ec2da4075 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:grafana.smithi027 smithi027 *:3000 running (3m) 8s ago 5m 78.6M - 9.4.12 2bacad6d85d8 d53005058203 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:haproxy.nfs.foo.smithi027.ngrkir smithi027 *:2049,9049 running (59s) 8s ago 59s 12.3M - 2.3.17-d1c9119 e85424b0d443 ad97b132357d 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:haproxy.nfs.foo.smithi050.fzjtmr smithi050 *:2049,9049 running (53s) 3s ago 52s 8564k - 2.3.17-d1c9119 e85424b0d443 a21743fe2ff5 2024-09-17T00:19:03.560 INFO:teuthology.orchestra.run.smithi027.stdout:keepalived.nfs.foo.smithi027.gphuww smithi027 running (37s) 8s ago 36s 1598k - 2.2.4 4a3a1ff181d9 f918a4dd1cb4 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:keepalived.nfs.foo.smithi050.cdmjwn smithi050 running (45s) 3s ago 45s 1602k - 2.2.4 4a3a1ff181d9 9abe5e8fc126 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:mgr.smithi027.paiqzz smithi027 *:9283,8765,8443 running (6m) 8s ago 6m 511M - 19.1.1-330-gc2ddf972 ebb0615149de 926beba8ba49 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:mgr.smithi050.eyeebe smithi050 *:8443,9283,8765 running (4m) 3s ago 4m 439M - 19.1.1-330-gc2ddf972 ebb0615149de b384c216e24c 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:mon.smithi027 smithi027 running (6m) 8s ago 6m 47.1M 2048M 19.1.1-330-gc2ddf972 ebb0615149de a2466fb7913a 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:mon.smithi050 smithi050 running (4m) 3s ago 4m 37.7M 2048M 19.1.1-330-gc2ddf972 ebb0615149de 5eee7f70efcb 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:nfs.foo.0.0.smithi027.dhiekt smithi027 *:12049 running (67s) 8s ago 66s 99.4M - 5.5 ebb0615149de 5a7329f16fc1 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter.smithi027 smithi027 *:9100 running (5m) 8s ago 5m 16.1M - 1.5.0 0da6a335fe13 9c5adfd618b2 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter.smithi050 smithi050 *:9100 running (4m) 3s ago 4m 16.0M - 1.5.0 0da6a335fe13 a25a0d1727b1 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.0 smithi050 running (3m) 3s ago 3m 50.6M 3729M 19.1.1-330-gc2ddf972 ebb0615149de 5c86f78cafcd 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.1 smithi027 running (2m) 8s ago 2m 56.8M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 205e4361d50a 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.2 smithi050 running (2m) 3s ago 2m 49.7M 3729M 19.1.1-330-gc2ddf972 ebb0615149de e919f6a3aebb 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.3 smithi027 running (2m) 8s ago 2m 61.9M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 5bfa58567a4a 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.4 smithi050 running (2m) 3s ago 2m 54.2M 3729M 19.1.1-330-gc2ddf972 ebb0615149de 868f44211e07 2024-09-17T00:19:03.561 INFO:teuthology.orchestra.run.smithi027.stdout:osd.5 smithi027 running (2m) 8s ago 2m 46.0M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 32e890881d1c 2024-09-17T00:19:03.562 INFO:teuthology.orchestra.run.smithi027.stdout:osd.6 smithi050 running (2m) 3s ago 2m 56.3M 3729M 19.1.1-330-gc2ddf972 ebb0615149de e3ed2dc94c1c 2024-09-17T00:19:03.562 INFO:teuthology.orchestra.run.smithi027.stdout:osd.7 smithi027 running (2m) 8s ago 2m 55.2M 2960M 19.1.1-330-gc2ddf972 ebb0615149de 5c6c93c2eb80 2024-09-17T00:19:03.562 INFO:teuthology.orchestra.run.smithi027.stdout:prometheus.smithi027 smithi027 *:9095 running (18s) 8s ago 4m 35.4M - 2.43.0 a07b618ecd1d 60dd95c94a1c 2024-09-17T00:19:03.562 INFO:teuthology.orchestra.run.smithi027.stdout:rgw.foorgw.smithi027.zxvvnk smithi027 *:8800 running (69s) 8s ago 69s 80.0M - 19.1.1-330-gc2ddf972 ebb0615149de 9361d2434b3f 2024-09-17T00:19:03.562 INFO:teuthology.orchestra.run.smithi027.stdout:rgw.foorgw.smithi050.clurkz smithi050 *:8800 running (73s) 3s ago 72s 77.9M - 19.1.1-330-gc2ddf972 ebb0615149de bb12d56bedc0 2024-09-17T00:19:04.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:03 smithi050 ceph-mon[34532]: from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:04.282 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:03 smithi027 ceph-mon[25467]: from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:04.330 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T00:19:04.607 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:05.004 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:04 smithi027 ceph-mon[25467]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.5 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T00:19:05.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:04 smithi050 ceph-mon[34532]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.5 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T00:19:06.032 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:05 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:19:06.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:05 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:alertmanager ?:9093,9094 1/1 11s ago 5m count:1 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-exporter 2/2 11s ago 6m * 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:crash 2/2 11s ago 6m * 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:grafana ?:3000 1/1 11s ago 5m count:1 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:ingress.nfs.foo 10.0.31.27:2049,9049 4/4 81s count:2 2024-09-17T00:19:06.561 INFO:teuthology.orchestra.run.smithi027.stdout:mgr 2/2 11s ago 6m count:2 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:mon 2/2 11s ago 5m smithi027:172.21.15.27=smithi027;smithi050:172.21.15.50=smithi050;count:2 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:nfs.foo ?:12049 1/1 81s count:1 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:node-exporter ?:9100 2/2 11s ago 5m * 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:osd.all-available-devices 8 11s ago 4m * 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:prometheus ?:9095 1/1 11s ago 5m count:1 2024-09-17T00:19:06.562 INFO:teuthology.orchestra.run.smithi027.stdout:rgw.foorgw ?:8800 2/2 11s ago 72s count:2 2024-09-17T00:19:07.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:06 smithi050 ceph-mon[34532]: from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:07.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:06 smithi050 ceph-mon[34532]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.1 KiB/s rd, 255 B/s wr, 7 op/s 2024-09-17T00:19:07.278 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:06 smithi027 ceph-mon[25467]: from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:07.278 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:06 smithi027 ceph-mon[25467]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.1 KiB/s rd, 255 B/s wr, 7 op/s 2024-09-17T00:19:08.036 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T00:19:08.416 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.675 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:19:08.676 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: Removing orphan daemon nfs.foo.0.0.smithi027.dhiekt... 2024-09-17T00:19:08.676 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:08 smithi027 ceph-mon[25467]: Removing daemon nfs.foo.0.0.smithi027.dhiekt from smithi027 -- ports [12049] 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: from='mgr.14217 172.21.15.27:0/1148021865' entity='mgr.smithi027.paiqzz' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: Removing orphan daemon nfs.foo.0.0.smithi027.dhiekt... 2024-09-17T00:19:08.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:08 smithi050 ceph-mon[34532]: Removing daemon nfs.foo.0.0.smithi027.dhiekt from smithi027 -- ports [12049] 2024-09-17T00:19:09.113 INFO:teuthology.orchestra.run.smithi027.stdout:HOST ADDR LABELS STATUS 2024-09-17T00:19:09.113 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 172.21.15.27 2024-09-17T00:19:09.113 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 172.21.15.50 2024-09-17T00:19:09.113 INFO:teuthology.orchestra.run.smithi027.stdout:2 hosts in cluster 2024-09-17T00:19:09.744 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T00:19:09.767 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:09 smithi027 ceph-mon[25467]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T00:19:09.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:09 smithi050 ceph-mon[34532]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T00:19:10.008 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5331001C400BGN 372G No 82s ago Has a FileSystem, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme1n1 ssd Linux_7d465a72890efe4758b4 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme2n1 ssd Linux_335af928afb879c58ad2 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme3n1 ssd Linux_7c12789a21cf1d43c27c 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi027 /dev/nvme4n1 ssd Linux_64de4a7c5ad7ae78ae1e 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 87s ago Has a FileSystem, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme1n1 ssd Linux_7af83f932fc4aeffc30a 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme2n1 ssd Linux_6e5d80e7da345e160ab5 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.701 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme3n1 ssd Linux_e8bdc45bb0012c1c1a42 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.702 INFO:teuthology.orchestra.run.smithi027.stdout:smithi050 /dev/nvme4n1 ssd Linux_8b9ffa9139ee1262943d 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T00:19:10.702 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:10 smithi027 ceph-mon[25467]: from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:10.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:10 smithi050 ceph-mon[34532]: from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:11.418 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-17T00:19:11.726 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/mon.smithi027/config 2024-09-17T00:19:11.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:11 smithi027 ceph-mon[25467]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T00:19:11.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:11 smithi050 ceph-mon[34532]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T00:19:12.433 INFO:teuthology.orchestra.run.smithi027.stdout:osd.all-available-devices 8 12s ago 4m * 2024-09-17T00:19:12.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:12 smithi027 ceph-mon[25467]: from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:12.836 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:12 smithi050 ceph-mon[34532]: from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:13.142 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-17T00:19:13.154 INFO:tasks.vip:Removing 10.0.15.27 (and any VIPs) on smithi027.front.sepia.ceph.com iface ens1f0... 2024-09-17T00:19:13.154 DEBUG:teuthology.orchestra.run.smithi027:> sudo ip addr del 10.0.15.27/16 dev ens1f0 2024-09-17T00:19:13.184 DEBUG:teuthology.orchestra.run.smithi027:> sudo ip addr del 10.0.31.27/16 dev ens1f0 2024-09-17T00:19:13.250 INFO:tasks.vip:Removing 10.0.15.50 (and any VIPs) on smithi050.front.sepia.ceph.com iface ens1f0... 2024-09-17T00:19:13.251 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr del 10.0.15.50/16 dev ens1f0 2024-09-17T00:19:13.286 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr del 10.0.31.27/16 dev ens1f0 2024-09-17T00:19:13.355 INFO:teuthology.orchestra.run.smithi050.stderr:Error: ipv4: Address not found. 2024-09-17T00:19:13.356 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-17T00:19:13.357 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T00:19:13.367 INFO:tasks.cephadm:Teardown begin 2024-09-17T00:19:13.367 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:19:13.394 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:19:13.426 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T00:19:13.426 DEBUG:teuthology.orchestra.run.smithi027:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T00:19:13.451 DEBUG:teuthology.orchestra.run.smithi050:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T00:19:13.484 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T00:19:13.484 INFO:tasks.cephadm.mon.smithi027:Stopping mon.smithi027... 2024-09-17T00:19:13.484 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027 2024-09-17T00:19:13.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 systemd[1]: Stopping Ceph mon.smithi027 for 5142ec4a-7489-11ef-bceb-c7b262605968... 2024-09-17T00:19:13.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 ceph-mon[25467]: from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:13.782 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 ceph-mon[25467]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:19:14.086 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:13 smithi050 ceph-mon[34532]: from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T00:19:14.087 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:13 smithi050 ceph-mon[34532]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T00:19:14.154 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027[25463]: 2024-09-17T00:19:13.812+0000 7f6dfbfef640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi027 -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-09-17T00:19:14.154 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027[25463]: 2024-09-17T00:19:13.812+0000 7f6dfbfef640 -1 mon.smithi027@0(leader) e2 *** Got Signal Terminated *** 2024-09-17T00:19:14.154 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:13 smithi027 podman[87386]: 2024-09-17 00:19:13.97673104 +0000 UTC m=+0.280366858 container died a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, RELEASE=squid-c2ddf97, ceph=True, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T00:19:14.409 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:14 smithi027 podman[87386]: 2024-09-17 00:19:14.351916675 +0000 UTC m=+0.655552492 container cleanup a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_BRANCH=HEAD) 2024-09-17T00:19:14.409 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:14 smithi027 bash[87386]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027 2024-09-17T00:19:14.770 INFO:journalctl@ceph.mon.smithi027.smithi027.stdout:Sep 17 00:19:14 smithi027 podman[87397]: 2024-09-17 00:19:14.611556186 +0000 UTC m=+0.630077939 container remove a2466fb7913a3cacc9440452ce1b60c7e60ebf510978a11bc1d7e639459d30f8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2ddf9721ef254645201cdbabd9c8f49c30a586f, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi027, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=squid-c2ddf97, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T00:19:14.794 DEBUG:teuthology.orchestra.run.smithi027:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi027.service' 2024-09-17T00:19:14.852 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T00:19:14.852 INFO:tasks.cephadm.mon.smithi027:Stopped mon.smithi027 2024-09-17T00:19:14.852 INFO:tasks.cephadm.mon.smithi050:Stopping mon.smithi050... 2024-09-17T00:19:14.852 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi050 2024-09-17T00:19:15.189 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:14 smithi050 systemd[1]: Stopping Ceph mon.smithi050 for 5142ec4a-7489-11ef-bceb-c7b262605968... 2024-09-17T00:19:15.564 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050[34526]: 2024-09-17T00:19:15.191+0000 7f0f84609640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi050 -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-09-17T00:19:15.565 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050[34526]: 2024-09-17T00:19:15.191+0000 7f0f84609640 -1 mon.smithi050@1(peon) e2 *** Got Signal Terminated *** 2024-09-17T00:19:15.565 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 podman[61408]: 2024-09-17 00:19:15.325169205 +0000 UTC m=+0.264677209 container died 5eee7f70efcbc182bd2550b132a8aa9e53185da7e8f2433831bb7013b5c31fb8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050, RELEASE=squid-c2ddf97, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux ) 2024-09-17T00:19:15.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 podman[61408]: 2024-09-17 00:19:15.758649219 +0000 UTC m=+0.698157261 container cleanup 5eee7f70efcbc182bd2550b132a8aa9e53185da7e8f2433831bb7013b5c31fb8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=squid-c2ddf97, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , ceph=True) 2024-09-17T00:19:15.837 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 bash[61408]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050 2024-09-17T00:19:16.217 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi050.service' 2024-09-17T00:19:16.240 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:15 smithi050 podman[61419]: 2024-09-17 00:19:15.985283387 +0000 UTC m=+0.655012008 container remove 5eee7f70efcbc182bd2550b132a8aa9e53185da7e8f2433831bb7013b5c31fb8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:475e68c989240ebfb6ca26a687a713828159881ccf6edcf69b7320f1853af3e3, name=ceph-5142ec4a-7489-11ef-bceb-c7b262605968-mon-smithi050, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , ceph=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, RELEASE=squid-c2ddf97, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS) 2024-09-17T00:19:16.241 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:16 smithi050 systemd[1]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi050.service: Deactivated successfully. 2024-09-17T00:19:16.241 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:16 smithi050 systemd[1]: Stopped Ceph mon.smithi050 for 5142ec4a-7489-11ef-bceb-c7b262605968. 2024-09-17T00:19:16.241 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 17 00:19:16 smithi050 systemd[1]: ceph-5142ec4a-7489-11ef-bceb-c7b262605968@mon.smithi050.service: Consumed 4.131s CPU time. 2024-09-17T00:19:16.271 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T00:19:16.271 INFO:tasks.cephadm.mon.smithi050:Stopped mon.smithi050 2024-09-17T00:19:16.272 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T00:19:19.586 INFO:teuthology.orchestra.run.smithi027.stdout:Deleting cluster with fsid: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:20:17.230 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T00:20:17.443 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:21:11.578 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:21:11.615 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T00:21:11.643 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T00:21:11.644 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi027/crash 2024-09-17T00:21:11.645 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash -- . 2024-09-17T00:21:11.699 INFO:teuthology.orchestra.run.smithi027.stderr:tar: /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T00:21:11.699 INFO:teuthology.orchestra.run.smithi027.stderr:tar: Error is not recoverable: exiting now 2024-09-17T00:21:11.701 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi050/crash 2024-09-17T00:21:11.702 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash -- . 2024-09-17T00:21:11.747 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T00:21:11.747 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-09-17T00:21:11.748 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T00:21:11.748 DEBUG:teuthology.orchestra.run.smithi027:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T00:21:11.780 INFO:tasks.cephadm:Compressing logs... 2024-09-17T00:21:11.780 DEBUG:teuthology.orchestra.run.smithi027:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T00:21:11.822 DEBUG:teuthology.orchestra.run.smithi050:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T00:21:11.847 INFO:teuthology.orchestra.run.smithi050.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-17T00:21:11.847 INFO:teuthology.orchestra.run.smithi050.stderr:: No such file or directory 2024-09-17T00:21:11.848 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi050.log 2024-09-17T00:21:11.856 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi050.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi050.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi050.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr: 27.8% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi050.log.gz 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.6.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr: 82.7% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi050.clurkz.log 2024-09-17T00:21:11.857 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.6.log: /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log: 86.3% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T00:21:11.858 INFO:teuthology.orchestra.run.smithi050.stderr: 91.3% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T00:21:11.858 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi050.eyeebe.log 2024-09-17T00:21:11.858 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi050.clurkz.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 68.6% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi050.clurkz.log.gz 2024-09-17T00:21:11.858 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-17T00:21:11.858 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi050.eyeebe.log: /var/log/ceph/cephadm.log: 92.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T00:21:11.859 INFO:teuthology.orchestra.run.smithi027.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi027.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:: No such file or directory 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.7.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi027.log: /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr: 93.7% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi027.log.gz 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi027.zxvvnk.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T00:21:11.860 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi027.zxvvnk.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi027.paiqzz.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr: 73.4% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi027.zxvvnk.log.gz 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi027.paiqzz.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.5.log: 84.2% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi027.zxvvnk.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi027.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi027.zxvvnk.log: /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log: 77.9% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi027.zxvvnk.log.gz 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr: 91.2% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.audit.log.gzgzip 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr: -5 --verbose -- /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi027.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T00:21:11.861 INFO:teuthology.orchestra.run.smithi027.stderr: 86.7%/var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.3.log: -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T00:21:11.862 INFO:teuthology.orchestra.run.smithi050.stderr: 91.8% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi050.eyeebe.log.gz 2024-09-17T00:21:11.862 INFO:teuthology.orchestra.run.smithi050.stderr: 90.9% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T00:21:11.863 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/cephadm.log: 91.2% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T00:21:11.884 INFO:teuthology.orchestra.run.smithi027.stderr: 91.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T00:21:11.965 INFO:teuthology.orchestra.run.smithi050.stderr: 92.6% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi050.log.gz 2024-09-17T00:21:11.967 INFO:teuthology.orchestra.run.smithi027.stderr: 89.1% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mgr.smithi027.paiqzz.log.gz 2024-09-17T00:21:12.082 INFO:teuthology.orchestra.run.smithi027.stderr: 93.6% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.7.log.gz 2024-09-17T00:21:12.140 INFO:teuthology.orchestra.run.smithi050.stderr: 93.5% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-17T00:21:12.165 INFO:teuthology.orchestra.run.smithi027.stderr: 91.3% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-mon.smithi027.log.gz 2024-09-17T00:21:12.170 INFO:teuthology.orchestra.run.smithi050.stderr: 93.3% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.6.log.gz 2024-09-17T00:21:12.171 INFO:teuthology.orchestra.run.smithi027.stderr: 93.5% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-17T00:21:12.172 INFO:teuthology.orchestra.run.smithi050.stderr: 93.4% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-17T00:21:12.241 INFO:teuthology.orchestra.run.smithi050.stderr: 93.5% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-17T00:21:12.243 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-17T00:21:12.243 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.405s 2024-09-17T00:21:12.243 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m1.421s 2024-09-17T00:21:12.243 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.070s 2024-09-17T00:21:12.248 INFO:teuthology.orchestra.run.smithi027.stderr: 93.7% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-17T00:21:12.261 INFO:teuthology.orchestra.run.smithi027.stderr: 93.7% -- replaced with /var/log/ceph/5142ec4a-7489-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-17T00:21:12.263 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-09-17T00:21:12.263 INFO:teuthology.orchestra.run.smithi027.stderr:real 0m0.427s 2024-09-17T00:21:12.264 INFO:teuthology.orchestra.run.smithi027.stderr:user 0m1.785s 2024-09-17T00:21:12.264 INFO:teuthology.orchestra.run.smithi027.stderr:sys 0m0.082s 2024-09-17T00:21:12.264 INFO:tasks.cephadm:Archiving logs... 2024-09-17T00:21:12.264 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi027/log 2024-09-17T00:21:12.265 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T00:21:12.576 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi050/log 2024-09-17T00:21:12.577 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T00:21:12.792 INFO:tasks.cephadm:Removing cluster... 2024-09-17T00:21:12.793 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 --force 2024-09-17T00:21:12.993 INFO:teuthology.orchestra.run.smithi027.stdout:Deleting cluster with fsid: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:21:13.118 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5142ec4a-7489-11ef-bceb-c7b262605968 --force 2024-09-17T00:21:13.319 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 5142ec4a-7489-11ef-bceb-c7b262605968 2024-09-17T00:21:13.439 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T00:21:13.439 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T00:21:13.455 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T00:21:13.471 INFO:tasks.cephadm:Teardown complete 2024-09-17T00:21:13.471 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-17T00:21:13.483 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_1... 2024-09-17T00:21:13.483 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_1 2024-09-17T00:21:13.659 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T00:21:13.660 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_2... 2024-09-17T00:21:13.660 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_2 2024-09-17T00:21:13.793 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T00:21:13.794 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_3... 2024-09-17T00:21:13.794 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_3 2024-09-17T00:21:13.945 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T00:21:13.946 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi027:/dev/vg_nvme/lv_4... 2024-09-17T00:21:13.946 DEBUG:teuthology.orchestra.run.smithi027:> sudo nvme disconnect -n lv_4 2024-09-17T00:21:14.096 INFO:teuthology.orchestra.run.smithi027.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T00:21:14.098 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-09-17T00:21:14.098 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/scratch_devs 2024-09-17T00:21:14.124 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-09-17T00:21:14.124 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_1 2024-09-17T00:21:14.264 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T00:21:14.266 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-09-17T00:21:14.266 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_2 2024-09-17T00:21:14.411 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T00:21:14.412 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-09-17T00:21:14.413 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_3 2024-09-17T00:21:14.554 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T00:21:14.556 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-09-17T00:21:14.556 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_4 2024-09-17T00:21:14.696 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T00:21:14.697 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-17T00:21:14.697 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-09-17T00:21:14.726 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T00:21:14.737 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T00:21:14.738 DEBUG:teuthology.orchestra.run.smithi027:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:21:14.740 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T00:21:14.755 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:^* hv01.front.sepia.ceph.com 3 6 377 36 +3424us[+3337us] +/- 36ms 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 37 -4035us[-4123us] +/- 68ms 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 36 -2307us[-2395us] +/- 71ms 2024-09-17T00:21:14.760 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:21:14.783 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-09-17T00:21:14.787 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T00:21:14.788 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-09-17T00:21:14.788 INFO:teuthology.orchestra.run.smithi050.stdout:^* hv01.front.sepia.ceph.com 3 6 377 36 +3340us[+3359us] +/- 36ms 2024-09-17T00:21:14.788 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 37 -4132us[-4113us] +/- 68ms 2024-09-17T00:21:14.788 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 36 -2388us[-2388us] +/- 71ms 2024-09-17T00:21:14.788 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T00:21:14.789 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T00:21:14.809 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T00:21:14.809 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T00:21:14.819 DEBUG:teuthology.orchestra.run.smithi027:> 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-09-17T00:21:14.900 DEBUG:teuthology.orchestra.run.smithi050:> 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-09-17T00:21:14.972 DEBUG:teuthology.orchestra.run.smithi027:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T00:21:15.004 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:21:15.005 DEBUG:teuthology.orchestra.run.smithi050:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T00:21:15.035 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:21:15.035 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T00:21:15.046 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T00:21:15.055 INFO:teuthology.task.internal:Duration was 857.741338 seconds 2024-09-17T00:21:15.055 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T00:21:15.066 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T00:21:15.067 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T00:21:15.070 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T00:21:15.110 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T00:21:15.118 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T00:21:15.577 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T00:21:15.577 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi027.front.sepia.ceph.com 2024-09-17T00:21:15.577 DEBUG:teuthology.orchestra.run.smithi027:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-17T00:21:15.641 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-09-17T00:21:15.641 DEBUG:teuthology.orchestra.run.smithi050:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-17T00:21:15.665 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T00:21:15.665 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T00:21:15.684 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T00:21:15.735 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T00:21:15.735 DEBUG:teuthology.orchestra.run.smithi027:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T00:21:15.754 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T00:21:16.021 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T00:21:16.033 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T00:21:16.033 DEBUG:teuthology.orchestra.run.smithi027:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T00:21:16.059 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T00:21:16.085 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T00:21:16.096 DEBUG:teuthology.orchestra.run.smithi027:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:21:16.102 DEBUG:teuthology.orchestra.run.smithi050:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:21:16.124 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = core 2024-09-17T00:21:16.148 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-09-17T00:21:16.172 DEBUG:teuthology.orchestra.run.smithi027:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:21:16.210 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:21:16.211 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T00:21:16.226 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T00:21:16.226 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T00:21:16.238 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T00:21:16.239 DEBUG:teuthology.misc:Transferring archived files from smithi027:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi027 2024-09-17T00:21:16.239 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T00:21:16.289 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_21:08:04-orch-squid-distro-default-smithi/7907921/remote/smithi050 2024-09-17T00:21:16.290 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T00:21:16.325 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T00:21:16.325 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T00:21:16.328 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T00:21:16.375 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T00:21:16.388 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T00:21:16.388 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T00:21:16.399 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T00:21:16.399 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T00:21:16.402 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T00:21:16.415 INFO:teuthology.orchestra.run.smithi027.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 00:21 /home/ubuntu/cephtest 2024-09-17T00:21:16.431 INFO:teuthology.orchestra.run.smithi050.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 00:21 /home/ubuntu/cephtest 2024-09-17T00:21:16.432 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T00:21:16.443 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T00:21:16.469 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-bucket 3-final} duration: 857.7413382530212 owner: scheduled_teuthology@teuthology success: true 2024-09-17T00:21:16.469 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T00:21:16.551 INFO:teuthology.run:pass