2024-09-17T08:20:50.415 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T08:20:50.578 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T08:20:50.667 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217 branch: reef description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7908217' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: reef 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: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b owner: scheduled_teuthology@teuthology priority: 930 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 5234 sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 sleep_before_teardown: 0 subset: 46/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 1cbdc9211df088cccbd94423c7cf3a2b85fe432b targets: smithi062.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9b0Niz4tEHpeKT0CCH4oD0sza9hNd87RAtmYyV1es66qf2JgdZr09hjvmRJJx07nWiE58F9CWNsBnepo/Yltk= smithi077.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyKDld0jd89regvA0FyCyVm8NrZLCbBkYtKL9Et0OFmEuktlAOsT2ZWz/hddbfpLFYTvL+7hjM9QHJhrrdvhCk= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install runc nvmetcli nvme-cli -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - 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_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T08:20:50.668 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa; will attempt to use it 2024-09-17T08:20:50.668 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa/tasks 2024-09-17T08:20:50.669 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T08:20:50.670 INFO:teuthology.task.internal:Checking packages... 2024-09-17T08:20:50.692 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' 2024-09-17T08:20:50.692 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T08:20:50.692 INFO:teuthology.packaging:ref: None 2024-09-17T08:20:50.692 INFO:teuthology.packaging:tag: None 2024-09-17T08:20:50.692 INFO:teuthology.packaging:branch: reef 2024-09-17T08:20:50.693 INFO:teuthology.packaging:sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:20:50.693 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=reef 2024-09-17T08:20:50.943 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-855.g19e2a2be 2024-09-17T08:20:50.945 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T08:20:50.955 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T08:20:50.955 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T08:20:51.006 INFO:teuthology.task.internal:Saving configuration 2024-09-17T08:20:51.020 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T08:20:51.029 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T08:20:51.052 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217', '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-17 08:15:48.973271', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBG9b0Niz4tEHpeKT0CCH4oD0sza9hNd87RAtmYyV1es66qf2JgdZr09hjvmRJJx07nWiE58F9CWNsBnepo/Yltk='} 2024-09-17T08:20:51.068 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi077.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217', '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-17 08:15:48.971643', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGyKDld0jd89regvA0FyCyVm8NrZLCbBkYtKL9Et0OFmEuktlAOsT2ZWz/hddbfpLFYTvL+7hjM9QHJhrrdvhCk='} 2024-09-17T08:20:51.068 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T08:20:51.073 INFO:teuthology.task.internal:roles: ubuntu@smithi062.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-17T08:20:51.073 INFO:teuthology.task.internal:roles: ubuntu@smithi077.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-17T08:20:51.073 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T08:20:51.170 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f37e0337ac0>, signals=[15]) 2024-09-17T08:20:51.170 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T08:20:51.176 INFO:teuthology.task.internal:Opening connections... 2024-09-17T08:20:51.177 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:20:51.178 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:20:51.256 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi077.front.sepia.ceph.com 2024-09-17T08:20:51.257 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:20:51.331 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T08:20:51.338 DEBUG:teuthology.orchestra.run.smithi062:> uname -m 2024-09-17T08:20:51.356 INFO:teuthology.orchestra.run.smithi062.stdout:x86_64 2024-09-17T08:20:51.356 DEBUG:teuthology.orchestra.run.smithi062:> cat /etc/os-release 2024-09-17T08:20:51.414 INFO:teuthology.orchestra.run.smithi062.stdout:NAME="CentOS Stream" 2024-09-17T08:20:51.414 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION="9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:ID="centos" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:ID_LIKE="rhel fedora" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION_ID="9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:PLATFORM_ID="platform:el9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:ANSI_COLOR="0;31" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:LOGO="fedora-logo-icon" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:HOME_URL="https://centos.org/" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T08:20:51.415 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T08:20:51.416 INFO:teuthology.lock.ops:Updating smithi062.front.sepia.ceph.com on lock server 2024-09-17T08:20:51.435 DEBUG:teuthology.orchestra.run.smithi077:> uname -m 2024-09-17T08:20:51.454 INFO:teuthology.orchestra.run.smithi077.stdout:x86_64 2024-09-17T08:20:51.454 DEBUG:teuthology.orchestra.run.smithi077:> cat /etc/os-release 2024-09-17T08:20:51.512 INFO:teuthology.orchestra.run.smithi077.stdout:NAME="CentOS Stream" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:VERSION="9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:ID="centos" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:ID_LIKE="rhel fedora" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:VERSION_ID="9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:PLATFORM_ID="platform:el9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:ANSI_COLOR="0;31" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:LOGO="fedora-logo-icon" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:HOME_URL="https://centos.org/" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T08:20:51.513 INFO:teuthology.orchestra.run.smithi077.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T08:20:51.514 INFO:teuthology.lock.ops:Updating smithi077.front.sepia.ceph.com on lock server 2024-09-17T08:20:51.534 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T08:20:51.543 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T08:20:51.636 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T08:20:51.636 DEBUG:teuthology.orchestra.run.smithi062:> test '!' -e /home/ubuntu/cephtest 2024-09-17T08:20:51.639 DEBUG:teuthology.orchestra.run.smithi077:> test '!' -e /home/ubuntu/cephtest 2024-09-17T08:20:51.656 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T08:20:51.698 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T08:20:51.699 DEBUG:teuthology.orchestra.run.smithi062:> test -z $(ls -A /var/lib/ceph) 2024-09-17T08:20:51.702 DEBUG:teuthology.orchestra.run.smithi077:> test -z $(ls -A /var/lib/ceph) 2024-09-17T08:20:51.790 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T08:20:51.965 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T08:20:52.024 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T08:20:52.024 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T08:20:52.025 DEBUG:teuthology.orchestra.run.smithi062:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T08:20:52.025 DEBUG:teuthology.orchestra.run.smithi077:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T08:20:52.042 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:20:52.043 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-09-17T08:20:52.044 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:20:52.044 DEBUG:teuthology.orchestra.run.smithi077:> uname -r 2024-09-17T08:20:52.100 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-503.el9.x86_64 2024-09-17T08:20:52.101 INFO:teuthology.task.kernel:Running kernel on smithi062: 5.14.0-503.el9.x86_64 2024-09-17T08:20:52.101 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum install -y kernel 2024-09-17T08:20:52.102 INFO:teuthology.orchestra.run.smithi077.stdout:5.14.0-503.el9.x86_64 2024-09-17T08:20:52.103 INFO:teuthology.task.kernel:Running kernel on smithi077: 5.14.0-503.el9.x86_64 2024-09-17T08:20:52.103 DEBUG:teuthology.orchestra.run.smithi077:> sudo yum install -y kernel 2024-09-17T08:20:54.318 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.3 MB 00:00 2024-09-17T08:20:54.868 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - BaseOS 8.7 MB/s | 8.3 MB 00:00 2024-09-17T08:20:58.527 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - AppStream 6.6 MB/s | 20 MB 00:03 2024-09-17T08:21:01.192 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - AppStream 3.9 MB/s | 20 MB 00:05 2024-09-17T08:21:04.012 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - CRB 4.2 MB/s | 6.5 MB 00:01 2024-09-17T08:21:05.487 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - Extras packages 88 kB/s | 19 kB 00:00 2024-09-17T08:21:06.651 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-17T08:21:06.716 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 21 MB/s | 23 MB 00:01 2024-09-17T08:21:08.102 INFO:teuthology.orchestra.run.smithi077.stdout:CentOS Stream 9 - Extras packages 78 kB/s | 19 kB 00:00 2024-09-17T08:21:09.173 INFO:teuthology.orchestra.run.smithi077.stdout:Extra Packages for Enterprise Linux 24 MB/s | 23 MB 00:00 2024-09-17T08:21:12.389 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 44 kB/s | 1.7 kB 00:00 2024-09-17T08:21:14.345 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T08:21:14.345 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T08:21:14.440 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-09-17T08:21:14.449 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:21:14.449 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-09-17T08:21:14.449 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:21:14.449 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-09-17T08:21:14.449 INFO:teuthology.orchestra.run.smithi062.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Install 4 Packages 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 79 M 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 126 M 2024-09-17T08:21:14.450 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-09-17T08:21:14.587 INFO:teuthology.orchestra.run.smithi077.stdout:lab-extras 43 kB/s | 1.7 kB 00:00 2024-09-17T08:21:14.798 INFO:teuthology.orchestra.run.smithi062.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 394 kB/s | 36 kB 00:00 2024-09-17T08:21:15.207 INFO:teuthology.orchestra.run.smithi062.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 31 MB/s | 16 MB 00:00 2024-09-17T08:21:15.641 INFO:teuthology.orchestra.run.smithi062.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 37 MB/s | 35 MB 00:00 2024-09-17T08:21:15.908 INFO:teuthology.orchestra.run.smithi062.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 26 MB/s | 29 MB 00:01 2024-09-17T08:21:15.908 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:21:15.908 INFO:teuthology.orchestra.run.smithi062.stdout:Total 54 MB/s | 79 MB 00:01 2024-09-17T08:21:16.418 INFO:teuthology.orchestra.run.smithi077.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T08:21:16.419 INFO:teuthology.orchestra.run.smithi077.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T08:21:16.521 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-09-17T08:21:16.530 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: Package Architecture Version Repository Size 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout:Installing: 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout:Installing dependencies: 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction Summary 2024-09-17T08:21:16.531 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:21:16.532 INFO:teuthology.orchestra.run.smithi077.stdout:Install 4 Packages 2024-09-17T08:21:16.532 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:21:16.532 INFO:teuthology.orchestra.run.smithi077.stdout:Total download size: 79 M 2024-09-17T08:21:16.532 INFO:teuthology.orchestra.run.smithi077.stdout:Installed size: 126 M 2024-09-17T08:21:16.532 INFO:teuthology.orchestra.run.smithi077.stdout:Downloading Packages: 2024-09-17T08:21:16.617 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-09-17T08:21:16.872 INFO:teuthology.orchestra.run.smithi077.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 122 kB/s | 36 kB 00:00 2024-09-17T08:21:16.985 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-09-17T08:21:16.985 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-09-17T08:21:17.977 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-09-17T08:21:17.977 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-09-17T08:21:20.519 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-09-17T08:21:21.185 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T08:21:21.265 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:21:24.026 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:21:24.169 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:21:29.288 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:21:29.319 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:21:30.088 INFO:teuthology.orchestra.run.smithi077.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 1.2 MB/s | 16 MB 00:13 2024-09-17T08:21:34.465 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:21:40.304 INFO:teuthology.orchestra.run.smithi077.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 1.5 MB/s | 35 MB 00:23 2024-09-17T08:21:52.087 INFO:teuthology.orchestra.run.smithi077.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 831 kB/s | 29 MB 00:35 2024-09-17T08:21:52.148 INFO:teuthology.orchestra.run.smithi077.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:21:52.148 INFO:teuthology.orchestra.run.smithi077.stdout:Total 2.2 MB/s | 79 MB 00:35 2024-09-17T08:21:52.767 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction check 2024-09-17T08:21:53.171 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction check succeeded. 2024-09-17T08:21:53.171 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction test 2024-09-17T08:21:54.154 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction test succeeded. 2024-09-17T08:21:54.154 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction 2024-09-17T08:21:56.583 INFO:teuthology.orchestra.run.smithi077.stdout: Preparing : 1/1 2024-09-17T08:21:57.239 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T08:21:57.329 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:22:00.086 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:22:00.234 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:22:05.057 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:22:05.101 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:09.996 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:13.675 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:13.716 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:14.043 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:14.043 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T08:22:14.043 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:22:14.043 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:22:14.901 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:22:14.902 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-09-17T08:22:15.394 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T08:22:15.481 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:15.481 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T08:22:15.481 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-17T08:22:15.482 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T08:22:15.482 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T08:22:15.482 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T08:22:15.482 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi062.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T08:22:15.482 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T08:22:15.542 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:15.543 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T08:22:15.543 DEBUG:teuthology.orchestra.run.smithi062:> sudo rpm -qi grub2-tools 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Name : grub2-tools 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Epoch : 1 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Version : 2.06 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Release : 82.el9 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Architecture: x86_64 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T08:22:15.580 INFO:teuthology.orchestra.run.smithi062.stdout:Group : Unspecified 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Size : 8274670 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:License : GPLv3+ 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Packager : builder@centos.org 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Vendor : CentOS 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Summary : Support tools for GRUB. 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:Description : 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T08:22:15.581 INFO:teuthology.orchestra.run.smithi062.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T08:22:15.582 INFO:teuthology.orchestra.run.smithi062.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T08:22:15.582 INFO:teuthology.orchestra.run.smithi062.stdout:hardware devices. 2024-09-17T08:22:15.582 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:22:15.582 INFO:teuthology.orchestra.run.smithi062.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T08:22:15.583 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T08:22:15.583 INFO:teuthology.task.kernel:Updating grub on smithi062 to boot 5.14.0-508.el9.x86_64 2024-09-17T08:22:15.583 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T08:22:16.174 INFO:teuthology.orchestra.run.smithi062.stderr:Generating grub configuration file ... 2024-09-17T08:22:17.588 INFO:teuthology.orchestra.run.smithi062.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T08:22:17.618 INFO:teuthology.orchestra.run.smithi062.stderr:done 2024-09-17T08:22:17.620 DEBUG:teuthology.orchestra.run.smithi062:> mktemp 2024-09-17T08:22:17.635 INFO:teuthology.orchestra.run.smithi062.stdout:/tmp/tmp.I5aDR1rrJc 2024-09-17T08:22:17.635 DEBUG:teuthology.orchestra.run.smithi062:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.I5aDR1rrJc 2024-09-17T08:22:17.702 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 0666 /tmp/tmp.I5aDR1rrJc 2024-09-17T08:22:17.835 DEBUG:teuthology.orchestra.remote:smithi062:/tmp/tmp.I5aDR1rrJc is 6KB 2024-09-17T08:22:17.884 DEBUG:teuthology.orchestra.run.smithi062:> rm -fr /tmp/tmp.I5aDR1rrJc 2024-09-17T08:22:17.898 DEBUG:teuthology.orchestra.run.smithi062:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T08:22:17.960 INFO:teuthology.orchestra.run.smithi062.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T08:22:17.960 INFO:teuthology.orchestra.run.smithi062.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T08:22:17.960 INFO:teuthology.orchestra.run.smithi062.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T08:22:17.960 INFO:teuthology.orchestra.run.smithi062.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T08:22:17.961 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T08:22:18.114 DEBUG:teuthology.orchestra.run.smithi062:> sudo shutdown -r now 2024-09-17T08:22:48.020 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:48.068 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:48.117 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T08:22:48.117 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-09-17T08:22:48.118 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:22:48.393 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:48.393 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T08:22:48.393 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T08:22:48.393 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T08:22:49.229 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout:Installed: 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:22:49.230 INFO:teuthology.orchestra.run.smithi077.stdout:Complete! 2024-09-17T08:22:49.576 DEBUG:teuthology.orchestra.run.smithi077:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T08:22:49.652 INFO:teuthology.orchestra.run.smithi077.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.652 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T08:22:49.653 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-17T08:22:49.653 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T08:22:49.653 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T08:22:49.653 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T08:22:49.653 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi077.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T08:22:49.653 DEBUG:teuthology.orchestra.run.smithi077:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T08:22:49.712 INFO:teuthology.orchestra.run.smithi077.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T08:22:49.712 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T08:22:49.712 DEBUG:teuthology.orchestra.run.smithi077:> sudo rpm -qi grub2-tools 2024-09-17T08:22:49.744 INFO:teuthology.orchestra.run.smithi077.stdout:Name : grub2-tools 2024-09-17T08:22:49.744 INFO:teuthology.orchestra.run.smithi077.stdout:Epoch : 1 2024-09-17T08:22:49.744 INFO:teuthology.orchestra.run.smithi077.stdout:Version : 2.06 2024-09-17T08:22:49.744 INFO:teuthology.orchestra.run.smithi077.stdout:Release : 82.el9 2024-09-17T08:22:49.745 INFO:teuthology.orchestra.run.smithi077.stdout:Architecture: x86_64 2024-09-17T08:22:49.745 INFO:teuthology.orchestra.run.smithi077.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T08:22:49.745 INFO:teuthology.orchestra.run.smithi077.stdout:Group : Unspecified 2024-09-17T08:22:49.745 INFO:teuthology.orchestra.run.smithi077.stdout:Size : 8274670 2024-09-17T08:22:49.745 INFO:teuthology.orchestra.run.smithi077.stdout:License : GPLv3+ 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Packager : builder@centos.org 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:Vendor : CentOS 2024-09-17T08:22:49.746 INFO:teuthology.orchestra.run.smithi077.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout:Summary : Support tools for GRUB. 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout:Description : 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T08:22:49.747 INFO:teuthology.orchestra.run.smithi077.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T08:22:49.748 INFO:teuthology.orchestra.run.smithi077.stdout:hardware devices. 2024-09-17T08:22:49.748 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:22:49.748 INFO:teuthology.orchestra.run.smithi077.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T08:22:49.749 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T08:22:49.749 INFO:teuthology.task.kernel:Updating grub on smithi077 to boot 5.14.0-508.el9.x86_64 2024-09-17T08:22:49.750 DEBUG:teuthology.orchestra.run.smithi077:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T08:22:50.446 INFO:teuthology.orchestra.run.smithi077.stderr:Generating grub configuration file ... 2024-09-17T08:22:51.767 INFO:teuthology.orchestra.run.smithi077.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T08:22:51.791 INFO:teuthology.orchestra.run.smithi077.stderr:done 2024-09-17T08:22:51.794 DEBUG:teuthology.orchestra.run.smithi077:> mktemp 2024-09-17T08:22:51.809 INFO:teuthology.orchestra.run.smithi077.stdout:/tmp/tmp.nuOu0gNLrH 2024-09-17T08:22:51.810 DEBUG:teuthology.orchestra.run.smithi077:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.nuOu0gNLrH 2024-09-17T08:22:51.876 DEBUG:teuthology.orchestra.run.smithi077:> sudo chmod 0666 /tmp/tmp.nuOu0gNLrH 2024-09-17T08:22:52.018 DEBUG:teuthology.orchestra.remote:smithi077:/tmp/tmp.nuOu0gNLrH is 6KB 2024-09-17T08:22:52.066 DEBUG:teuthology.orchestra.run.smithi077:> rm -fr /tmp/tmp.nuOu0gNLrH 2024-09-17T08:22:52.081 DEBUG:teuthology.orchestra.run.smithi077:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T08:22:52.144 INFO:teuthology.orchestra.run.smithi077.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T08:22:52.144 INFO:teuthology.orchestra.run.smithi077.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T08:22:52.144 INFO:teuthology.orchestra.run.smithi077.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T08:22:52.144 INFO:teuthology.orchestra.run.smithi077.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T08:22:52.146 DEBUG:teuthology.orchestra.run.smithi077:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T08:22:52.310 DEBUG:teuthology.orchestra.run.smithi077:> sudo shutdown -r now 2024-09-17T08:23:22.342 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T08:23:22.343 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:23:22.344 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:23:48.145 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T08:23:56.989 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.77 2024-09-17T08:23:57.146 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-09-17T08:23:57.147 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:23:57.541 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-09-17T08:23:57.978 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-09-17T08:23:57.979 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T08:23:57.979 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-09-17T08:23:57.994 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-508.el9.x86_64 2024-09-17T08:23:57.994 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-17T08:23:57.994 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T08:23:57.994 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T08:23:58.995 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T08:23:58.995 DEBUG:teuthology.orchestra.run.smithi062:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T08:23:59.077 INFO:teuthology.orchestra.run.smithi062.stdout:ttyS1 2024-09-17T08:23:59.097 DEBUG:teuthology.parallel:result is None 2024-09-17T08:24:05.989 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:24:05.990 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:24:24.381 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.77 2024-09-17T08:24:36.383 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:24:36.384 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:24:36.962 DEBUG:teuthology.orchestra.run.smithi077:> true 2024-09-17T08:24:37.352 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:24:37.352 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T08:24:37.353 DEBUG:teuthology.orchestra.run.smithi077:> uname -r 2024-09-17T08:24:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:5.14.0-508.el9.x86_64 2024-09-17T08:24:37.367 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-17T08:24:37.367 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T08:24:37.367 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T08:24:38.368 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T08:24:38.369 DEBUG:teuthology.orchestra.run.smithi077:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T08:24:38.435 INFO:teuthology.orchestra.run.smithi077.stdout:ttyS1 2024-09-17T08:24:38.466 DEBUG:teuthology.parallel:result is None 2024-09-17T08:24:38.467 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T08:24:38.477 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T08:24:38.478 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T08:24:38.481 DEBUG:teuthology.orchestra.run.smithi077:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T08:24:38.499 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T08:24:38.699 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T08:24:38.755 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T08:24:38.756 DEBUG:teuthology.orchestra.run.smithi062:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T08:24:38.758 DEBUG:teuthology.orchestra.run.smithi077:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T08:24:38.786 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T08:24:38.881 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T08:24:38.881 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:24:38.884 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:24:38.918 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:24:38.920 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:24:38.928 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:24:38.931 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T08:24:38.933 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T08:24:38.965 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T08:24:38.966 DEBUG:teuthology.orchestra.run.smithi062:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T08:24:38.976 DEBUG:teuthology.orchestra.run.smithi077:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T08:24:39.003 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T08:24:39.059 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T08:24:39.060 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T08:24:39.062 DEBUG:teuthology.orchestra.run.smithi077:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T08:24:39.077 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:24:39.162 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:24:39.205 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:24:39.288 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:24:39.331 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:24:39.331 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T08:24:39.397 DEBUG:teuthology.orchestra.run.smithi077:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:24:39.440 DEBUG:teuthology.orchestra.run.smithi077:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T08:24:39.492 DEBUG:teuthology.orchestra.run.smithi077:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:24:39.574 DEBUG:teuthology.orchestra.run.smithi077:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T08:24:39.622 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:24:39.623 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T08:24:39.691 DEBUG:teuthology.orchestra.run.smithi062:> sudo service rsyslog restart 2024-09-17T08:24:39.694 DEBUG:teuthology.orchestra.run.smithi077:> sudo service rsyslog restart 2024-09-17T08:24:39.741 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:24:39.771 INFO:teuthology.orchestra.run.smithi077.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:24:40.088 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T08:24:40.096 INFO:teuthology.task.internal:Starting timer... 2024-09-17T08:24:40.096 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T08:24:40.223 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T08:24:40.321 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-17T08:24:40.321 DEBUG:teuthology.orchestra.run.smithi062:> sudo service auditd rotate 2024-09-17T08:24:40.374 INFO:teuthology.orchestra.run.smithi062.stdout:Rotating logs: 2024-09-17T08:24:40.377 DEBUG:teuthology.orchestra.run.smithi077:> sudo service auditd rotate 2024-09-17T08:24:40.444 INFO:teuthology.orchestra.run.smithi077.stdout:Rotating logs: 2024-09-17T08:24:40.446 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T08:24:40.446 DEBUG:teuthology.orchestra.run.smithi062:> /usr/sbin/getenforce 2024-09-17T08:24:40.468 INFO:teuthology.orchestra.run.smithi062.stdout:Permissive 2024-09-17T08:24:40.468 DEBUG:teuthology.orchestra.run.smithi077:> /usr/sbin/getenforce 2024-09-17T08:24:40.494 INFO:teuthology.orchestra.run.smithi077.stdout:Permissive 2024-09-17T08:24:40.494 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi062.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi077.front.sepia.ceph.com': 'permissive'} 2024-09-17T08:24:40.494 DEBUG:teuthology.orchestra.run.smithi062:> 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 2024-09-17T08:24:40.540 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:24:40.540 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-09-17T08:24:40.564 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:24:40.565 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T08:24:40.565 DEBUG:teuthology.orchestra.run.smithi062:> sudo /usr/sbin/setenforce permissive 2024-09-17T08:24:40.625 DEBUG:teuthology.orchestra.run.smithi077:> sudo /usr/sbin/setenforce permissive 2024-09-17T08:24:40.657 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T08:24:40.666 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-17T08:24:40.669 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-17T08:24:40.776 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T08:24:40.788 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-17T08:24:40.789 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi062.front.sepia.ceph.com,smithi077.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T08:28:27.024 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi062.front.sepia.ceph.com'), Remote(name='ubuntu@smithi077.front.sepia.ceph.com')] 2024-09-17T08:28:27.026 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-09-17T08:28:27.027 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:28:27.106 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-09-17T08:28:27.144 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-09-17T08:28:27.144 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:28:27.145 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi077.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T08:28:27.218 DEBUG:teuthology.orchestra.run.smithi077:> true 2024-09-17T08:28:27.301 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi077.front.sepia.ceph.com' 2024-09-17T08:28:27.302 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T08:28:27.312 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T08:28:27.313 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T08:28:27.313 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:27.316 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T08:28:27.316 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:27.345 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T08:28:27.361 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T08:28:27.373 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T08:28:27.386 INFO:teuthology.orchestra.run.smithi062.stderr:sudo: ntpd: command not found 2024-09-17T08:28:27.389 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T08:28:27.398 INFO:teuthology.orchestra.run.smithi062.stdout:506 Cannot talk to daemon 2024-09-17T08:28:27.413 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T08:28:27.415 INFO:teuthology.orchestra.run.smithi077.stderr:sudo: ntpd: command not found 2024-09-17T08:28:27.426 INFO:teuthology.orchestra.run.smithi077.stdout:506 Cannot talk to daemon 2024-09-17T08:28:27.427 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T08:28:27.441 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T08:28:27.455 INFO:teuthology.orchestra.run.smithi077.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T08:28:27.502 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:28:27.505 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:28:27.505 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-09-17T08:28:27.505 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.506 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.506 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.506 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.508 INFO:teuthology.orchestra.run.smithi077.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:28:27.511 INFO:teuthology.orchestra.run.smithi077.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:28:27.511 INFO:teuthology.orchestra.run.smithi077.stdout:=============================================================================== 2024-09-17T08:28:27.511 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.511 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.511 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.512 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:28:27.512 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T08:28:27.522 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T08:28:27.523 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:28:27.523 DEBUG:teuthology.orchestra.run.smithi062:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T08:28:27.523 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi077.front.sepia.ceph.com 2024-09-17T08:28:27.523 DEBUG:teuthology.orchestra.run.smithi077:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T08:28:27.901 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-09-17T08:28:27.912 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-09-17T08:28:27.914 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:27.914 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-09-17T08:28:27.914 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Removing: 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Removing unused dependencies: 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Remove 2 Packages 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Freed space: 5.5 M 2024-09-17T08:28:27.915 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-09-17T08:28:27.919 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-09-17T08:28:27.919 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout: Package Architecture Version Repository Size 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:Removing: 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:Removing unused dependencies: 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction Summary 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout:Remove 2 Packages 2024-09-17T08:28:27.935 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:27.936 INFO:teuthology.orchestra.run.smithi077.stdout:Freed space: 5.5 M 2024-09-17T08:28:27.936 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction check 2024-09-17T08:28:27.939 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction check succeeded. 2024-09-17T08:28:27.940 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction test 2024-09-17T08:28:27.996 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-09-17T08:28:27.996 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-09-17T08:28:28.008 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction test succeeded. 2024-09-17T08:28:28.009 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction 2024-09-17T08:28:28.138 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-09-17T08:28:28.145 INFO:teuthology.orchestra.run.smithi077.stdout: Preparing : 1/1 2024-09-17T08:28:28.216 INFO:teuthology.orchestra.run.smithi077.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T08:28:28.217 INFO:teuthology.orchestra.run.smithi062.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T08:28:28.272 INFO:teuthology.orchestra.run.smithi077.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:28:28.279 INFO:teuthology.orchestra.run.smithi062.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:28:28.708 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:28:28.708 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T08:28:28.746 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T08:28:28.746 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T08:28:28.941 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T08:28:28.941 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:28.941 INFO:teuthology.orchestra.run.smithi062.stdout:Removed: 2024-09-17T08:28:28.941 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:28:28.942 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:28.942 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout:Removed: 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:28.990 INFO:teuthology.orchestra.run.smithi077.stdout:Complete! 2024-09-17T08:28:29.809 INFO:teuthology.orchestra.run.smithi077.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 08:27:39 AM UTC. 2024-09-17T08:28:29.816 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:45 ago on Tue 17 Sep 2024 08:27:44 AM UTC. 2024-09-17T08:28:29.945 INFO:teuthology.orchestra.run.smithi077.stdout:Dependencies resolved. 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: Package Arch Version Repository Size 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout:Installing: 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout:Installing dependencies: 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T08:28:29.946 INFO:teuthology.orchestra.run.smithi077.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction Summary 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout:================================================================================ 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout:Install 7 Packages 2024-09-17T08:28:29.947 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:29.968 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-09-17T08:28:29.969 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:29.969 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-09-17T08:28:29.969 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:28:29.970 INFO:teuthology.orchestra.run.smithi062.stdout:Install 7 Packages 2024-09-17T08:28:29.971 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:29.976 INFO:teuthology.orchestra.run.smithi077.stdout:Total download size: 5.2 M 2024-09-17T08:28:29.976 INFO:teuthology.orchestra.run.smithi077.stdout:Installed size: 19 M 2024-09-17T08:28:29.976 INFO:teuthology.orchestra.run.smithi077.stdout:Downloading Packages: 2024-09-17T08:28:30.000 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 5.2 M 2024-09-17T08:28:30.000 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 19 M 2024-09-17T08:28:30.000 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-09-17T08:28:30.177 INFO:teuthology.orchestra.run.smithi077.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 550 kB/s | 44 kB 00:00 2024-09-17T08:28:30.203 INFO:teuthology.orchestra.run.smithi077.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 996 kB/s | 106 kB 00:00 2024-09-17T08:28:30.236 INFO:teuthology.orchestra.run.smithi077.stdout:(3/7): python3-configshell-1.1.30-1.el9.noarch. 1.2 MB/s | 72 kB 00:00 2024-09-17T08:28:30.262 INFO:teuthology.orchestra.run.smithi077.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.4 MB/s | 84 kB 00:00 2024-09-17T08:28:30.312 INFO:teuthology.orchestra.run.smithi077.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.1 MB/s | 906 kB 00:00 2024-09-17T08:28:30.404 INFO:teuthology.orchestra.run.smithi077.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 4.9 MB/s | 837 kB 00:00 2024-09-17T08:28:30.451 INFO:teuthology.orchestra.run.smithi062.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 308 kB/s | 44 kB 00:00 2024-09-17T08:28:30.476 INFO:teuthology.orchestra.run.smithi062.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 624 kB/s | 106 kB 00:00 2024-09-17T08:28:30.526 INFO:teuthology.orchestra.run.smithi062.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.6 MB/s | 84 kB 00:00 2024-09-17T08:28:30.552 INFO:teuthology.orchestra.run.smithi062.stdout:(4/7): python3-configshell-1.1.30-1.el9.noarch. 712 kB/s | 72 kB 00:00 2024-09-17T08:28:30.618 INFO:teuthology.orchestra.run.smithi062.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.8 MB/s | 906 kB 00:00 2024-09-17T08:28:30.677 INFO:teuthology.orchestra.run.smithi062.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.4 MB/s | 837 kB 00:00 2024-09-17T08:28:30.937 INFO:teuthology.orchestra.run.smithi077.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 4.7 MB/s | 3.2 MB 00:00 2024-09-17T08:28:30.938 INFO:teuthology.orchestra.run.smithi077.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:28:30.938 INFO:teuthology.orchestra.run.smithi077.stdout:Total 5.4 MB/s | 5.2 MB 00:00 2024-09-17T08:28:31.046 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction check 2024-09-17T08:28:31.061 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction check succeeded. 2024-09-17T08:28:31.061 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction test 2024-09-17T08:28:31.383 INFO:teuthology.orchestra.run.smithi077.stdout:Transaction test succeeded. 2024-09-17T08:28:31.383 INFO:teuthology.orchestra.run.smithi077.stdout:Running transaction 2024-09-17T08:28:31.586 INFO:teuthology.orchestra.run.smithi062.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 3.1 MB/s | 3.2 MB 00:01 2024-09-17T08:28:31.586 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:28:31.587 INFO:teuthology.orchestra.run.smithi062.stdout:Total 3.3 MB/s | 5.2 MB 00:01 2024-09-17T08:28:31.706 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-09-17T08:28:31.722 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-09-17T08:28:31.722 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-09-17T08:28:31.852 INFO:teuthology.orchestra.run.smithi077.stdout: Preparing : 1/1 2024-09-17T08:28:31.942 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T08:28:31.977 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T08:28:32.022 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T08:28:32.045 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-09-17T08:28:32.046 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-09-17T08:28:32.231 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T08:28:32.269 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T08:28:32.535 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-09-17T08:28:32.631 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T08:28:32.684 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T08:28:32.713 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T08:28:32.719 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T08:28:32.739 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T08:28:32.853 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T08:28:32.917 INFO:teuthology.orchestra.run.smithi077.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:32.944 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T08:28:32.974 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T08:28:33.454 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T08:28:33.485 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T08:28:33.617 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T08:28:33.684 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:33.893 INFO:teuthology.orchestra.run.smithi077.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T08:28:33.894 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T08:28:34.305 INFO:teuthology.orchestra.run.smithi077.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:34.305 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:34.305 INFO:teuthology.orchestra.run.smithi077.stdout:Installed: 2024-09-17T08:28:34.305 INFO:teuthology.orchestra.run.smithi077.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:28:34.305 INFO:teuthology.orchestra.run.smithi077.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T08:28:34.306 INFO:teuthology.orchestra.run.smithi077.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T08:28:34.306 INFO:teuthology.orchestra.run.smithi077.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T08:28:34.306 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:28:34.306 INFO:teuthology.orchestra.run.smithi077.stdout:Complete! 2024-09-17T08:28:34.677 DEBUG:teuthology.parallel:result is None 2024-09-17T08:28:34.720 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T08:28:34.721 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T08:28:35.154 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T08:28:35.155 INFO:teuthology.orchestra.run.smithi062.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T08:28:35.155 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:28:35.155 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-09-17T08:28:35.554 DEBUG:teuthology.parallel:result is None 2024-09-17T08:28:35.554 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-17T08:28:35.564 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-17T08:28:35.564 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:28:35.564 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:28:35.581 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-17T08:28:35.581 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_1 2024-09-17T08:28:35.637 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 964 Links: 1 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:28:33.922914259 +0000 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.638 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.638 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T08:28:35.702 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:28:35.702 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:28:35.702 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000270348 s, 1.9 MB/s 2024-09-17T08:28:35.703 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T08:28:35.760 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_2 2024-09-17T08:28:35.816 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T08:28:35.816 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:28:33.922914259 +0000 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.817 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:33.578919892 +0000 2024-09-17T08:28:35.817 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T08:28:35.881 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:28:35.881 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:28:35.881 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000199855 s, 2.6 MB/s 2024-09-17T08:28:35.882 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T08:28:35.939 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_3 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:28:33.923914243 +0000 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:35.994 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:35.995 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T08:28:36.058 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:28:36.058 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:28:36.058 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000195358 s, 2.6 MB/s 2024-09-17T08:28:36.059 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T08:28:36.116 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/vg_nvme/lv_4 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:28:33.923914243 +0000 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:36.171 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:36.172 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:33.579919876 +0000 2024-09-17T08:28:36.172 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T08:28:36.235 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:28:36.235 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:28:36.235 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000178791 s, 2.9 MB/s 2024-09-17T08:28:36.236 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T08:28:36.293 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:36.479 INFO:teuthology.orchestra.run.smithi062.stdout:loop 2024-09-17T08:28:36.481 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_1... 2024-09-17T08:28:36.481 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:36.515 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-09-17T08:28:36.549 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_11 2024-09-17T08:28:36.687 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme1 2024-09-17T08:28:36.689 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_2... 2024-09-17T08:28:36.689 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:36.766 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-09-17T08:28:36.798 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_21 2024-09-17T08:28:36.834 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme2 2024-09-17T08:28:36.836 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_3... 2024-09-17T08:28:36.837 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:36.927 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-09-17T08:28:36.959 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_31 2024-09-17T08:28:36.991 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme3 2024-09-17T08:28:36.993 INFO:tasks.nvme_loop:Connecting nvme_loop smithi062:/dev/vg_nvme/lv_4... 2024-09-17T08:28:36.994 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:28:37.029 INFO:teuthology.orchestra.run.smithi062.stdout:1 2024-09-17T08:28:37.061 INFO:teuthology.orchestra.run.smithi062.stdout:/dev/vg_nvme/lv_41 2024-09-17T08:28:37.093 INFO:teuthology.orchestra.run.smithi062.stdout:connecting to device: nvme4 2024-09-17T08:28:37.095 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:28:37.095 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:28:37.151 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme list -o json 2024-09-17T08:28:37.217 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-09-17T08:28:37.217 INFO:teuthology.orchestra.run.smithi062.stdout: "Devices":[ 2024-09-17T08:28:37.217 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-09-17T08:28:37.217 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"0b1920eef28558989380", 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:37.218 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"fdc7b97ab3ff08762816", 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:37.219 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:37.220 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"d0b4ab66f65aa7d6fb41", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"45fb94552deac6e9f3e1", 2024-09-17T08:28:37.221 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: }, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: { 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "NameSpace":1, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "Firmware":"8DV101H0", 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "SerialNumber":"CVFT53440094400BGN", 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "UsedBytes":400088457216, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "MaximumLBA":781422768, 2024-09-17T08:28:37.222 INFO:teuthology.orchestra.run.smithi062.stdout: "PhysicalSize":400088457216, 2024-09-17T08:28:37.223 INFO:teuthology.orchestra.run.smithi062.stdout: "SectorSize":512 2024-09-17T08:28:37.223 INFO:teuthology.orchestra.run.smithi062.stdout: } 2024-09-17T08:28:37.223 INFO:teuthology.orchestra.run.smithi062.stdout: ] 2024-09-17T08:28:37.223 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-09-17T08:28:37.224 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T08:28:37.224 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:28:37.224 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/scratch_devs 2024-09-17T08:28:37.289 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:28:37.289 DEBUG:teuthology.orchestra.run.smithi077:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:28:37.309 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-17T08:28:37.309 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_1 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 965 Links: 1 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:28:33.154199811 +0000 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.367 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.368 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T08:28:37.434 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:28:37.435 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:28:37.435 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000287234 s, 1.8 MB/s 2024-09-17T08:28:37.436 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T08:28:37.494 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_2 2024-09-17T08:28:37.550 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T08:28:37.550 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:28:33.154199811 +0000 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.551 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.551 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T08:28:37.615 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:28:37.615 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:28:37.615 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000228186 s, 2.2 MB/s 2024-09-17T08:28:37.617 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T08:28:37.674 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_3 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 963 Links: 1 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:28:33.155199698 +0000 2024-09-17T08:28:37.730 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.731 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.731 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:32.822237572 +0000 2024-09-17T08:28:37.731 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T08:28:37.796 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:28:37.796 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:28:37.796 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000212405 s, 2.4 MB/s 2024-09-17T08:28:37.797 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T08:28:37.855 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/vg_nvme/lv_4 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:28:33.155199698 +0000 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.911 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:32.823237458 +0000 2024-09-17T08:28:37.912 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T08:28:37.975 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:28:37.975 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:28:37.975 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000223428 s, 2.3 MB/s 2024-09-17T08:28:37.977 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T08:28:38.033 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:38.164 INFO:teuthology.orchestra.run.smithi077.stdout:loop 2024-09-17T08:28:38.166 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_1... 2024-09-17T08:28:38.166 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:38.199 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-09-17T08:28:38.228 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_11 2024-09-17T08:28:38.268 INFO:teuthology.orchestra.run.smithi077.stdout:connecting to device: nvme1 2024-09-17T08:28:38.270 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_2... 2024-09-17T08:28:38.270 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:38.343 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-09-17T08:28:38.382 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_21 2024-09-17T08:28:38.418 INFO:teuthology.orchestra.run.smithi077.stdout:connecting to device: nvme2 2024-09-17T08:28:38.419 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_3... 2024-09-17T08:28:38.420 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:38.494 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-09-17T08:28:38.523 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_31 2024-09-17T08:28:38.555 INFO:teuthology.orchestra.run.smithi077.stdout:connecting to device: nvme3 2024-09-17T08:28:38.556 INFO:tasks.nvme_loop:Connecting nvme_loop smithi077:/dev/vg_nvme/lv_4... 2024-09-17T08:28:38.556 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:28:38.630 INFO:teuthology.orchestra.run.smithi077.stdout:1 2024-09-17T08:28:38.661 INFO:teuthology.orchestra.run.smithi077.stdout:/dev/vg_nvme/lv_41 2024-09-17T08:28:38.696 INFO:teuthology.orchestra.run.smithi077.stdout:connecting to device: nvme4 2024-09-17T08:28:38.698 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:28:38.698 DEBUG:teuthology.orchestra.run.smithi077:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:28:38.753 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme list -o json 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout:{ 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "Devices":[ 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: { 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "NameSpace":1, 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "SerialNumber":"8992c4044953ff4c23f3", 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:38.822 INFO:teuthology.orchestra.run.smithi077.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "SectorSize":512 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: }, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: { 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "NameSpace":1, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "SerialNumber":"f7e2f92e40d0b5ea08a0", 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:38.823 INFO:teuthology.orchestra.run.smithi077.stdout: "SectorSize":512 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: }, 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: { 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "NameSpace":1, 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "SerialNumber":"96bfc3529cd73a58c7e3", 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: "SectorSize":512 2024-09-17T08:28:38.824 INFO:teuthology.orchestra.run.smithi077.stdout: }, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: { 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "NameSpace":1, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "Firmware":"5.14.0-5", 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "ModelNumber":"Linux", 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "SerialNumber":"7a62bf7323e6f2099424", 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "UsedBytes":95995035648, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "MaximumLBA":187490304, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "PhysicalSize":95995035648, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "SectorSize":512 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: }, 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: { 2024-09-17T08:28:38.825 INFO:teuthology.orchestra.run.smithi077.stdout: "NameSpace":1, 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "Firmware":"8DV101H0", 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "SerialNumber":"PHFT620400ZJ400BGN", 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "UsedBytes":400088457216, 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "MaximumLBA":781422768, 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "PhysicalSize":400088457216, 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: "SectorSize":512 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: } 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout: ] 2024-09-17T08:28:38.826 INFO:teuthology.orchestra.run.smithi077.stdout:} 2024-09-17T08:28:38.827 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T08:28:38.827 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:28:38.827 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/scratch_devs 2024-09-17T08:28:38.893 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T08:28:38.988 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': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9'} 2024-09-17T08:28:38.988 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:28:38.988 INFO:tasks.cephadm:Cluster fsid is d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:28:38.988 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T08:28:38.989 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-17T08:28:38.989 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi062': '172.21.15.62', 'mon.smithi077': '172.21.15.77'} 2024-09-17T08:28:38.989 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T08:28:38.989 DEBUG:teuthology.orchestra.run.smithi062:> sudo hostname $(hostname -s) 2024-09-17T08:28:39.022 DEBUG:teuthology.orchestra.run.smithi077:> sudo hostname $(hostname -s) 2024-09-17T08:28:39.048 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T08:28:39.048 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:28:39.190 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '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/56094/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-855-g19e2a2be', 'node_name': '172.21.2.7+braggi07', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-855.g19e2a2be'}, 'url': 'https://4.chacra.ceph.com/r/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-16 16:29:21.739533', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T08:28:39.329 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref reef, sha1 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:28:39.331 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm 2024-09-17T08:28:39.331 DEBUG:teuthology.orchestra.run.smithi062:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:39.676 INFO:teuthology.orchestra.run.smithi062.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 08:28 /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:39.676 DEBUG:teuthology.orchestra.run.smithi077:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:39.996 INFO:teuthology.orchestra.run.smithi077.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 08:28 /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:39.996 DEBUG:teuthology.orchestra.run.smithi062:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:40.016 DEBUG:teuthology.orchestra.run.smithi077:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T08:28:40.041 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 on all hosts... 2024-09-17T08:28:40.042 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T08:28:40.059 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T08:28:41.545 INFO:teuthology.orchestra.run.smithi077.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:28:41.553 INFO:teuthology.orchestra.run.smithi062.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:29:07.227 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-09-17T08:29:07.227 INFO:teuthology.orchestra.run.smithi062.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T08:29:07.228 INFO:teuthology.orchestra.run.smithi062.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T08:29:07.228 INFO:teuthology.orchestra.run.smithi062.stdout: "repo_digests": [ 2024-09-17T08:29:07.228 INFO:teuthology.orchestra.run.smithi062.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T08:29:07.228 INFO:teuthology.orchestra.run.smithi062.stdout: ] 2024-09-17T08:29:07.228 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-09-17T08:29:15.819 INFO:teuthology.orchestra.run.smithi077.stdout:{ 2024-09-17T08:29:15.819 INFO:teuthology.orchestra.run.smithi077.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T08:29:15.819 INFO:teuthology.orchestra.run.smithi077.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T08:29:15.819 INFO:teuthology.orchestra.run.smithi077.stdout: "repo_digests": [ 2024-09-17T08:29:15.819 INFO:teuthology.orchestra.run.smithi077.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T08:29:15.820 INFO:teuthology.orchestra.run.smithi077.stdout: ] 2024-09-17T08:29:15.820 INFO:teuthology.orchestra.run.smithi077.stdout:} 2024-09-17T08:29:15.839 DEBUG:teuthology.orchestra.run.smithi062:> sudo mkdir -p /etc/ceph 2024-09-17T08:29:15.873 DEBUG:teuthology.orchestra.run.smithi077:> sudo mkdir -p /etc/ceph 2024-09-17T08:29:15.901 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 777 /etc/ceph 2024-09-17T08:29:15.942 DEBUG:teuthology.orchestra.run.smithi077:> sudo chmod 777 /etc/ceph 2024-09-17T08:29:15.967 INFO:tasks.cephadm:Writing seed config... 2024-09-17T08:29:15.968 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T08:29:15.968 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T08:29:15.969 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-17T08:29:15.969 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:29:15.970 DEBUG:teuthology.orchestra.run.smithi062:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T08:29:16.000 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = d6ef9a88-74ce-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-17T08:29:16.001 DEBUG:teuthology.orchestra.run.smithi062:mon.smithi062> sudo journalctl -f -n 0 -u ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service 2024-09-17T08:29:16.043 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T08:29:16.043 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 -v bootstrap --fsid d6ef9a88-74ce-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.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:29:16.205 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:29:16.205 INFO:teuthology.orchestra.run.smithi062.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '-v', 'bootstrap', '--fsid', 'd6ef9a88-74ce-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.62', '--skip-admin-label'] 2024-09-17T08:29:16.229 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:29:16.229 INFO:teuthology.orchestra.run.smithi062.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T08:29:16.230 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying podman|docker is present... 2024-09-17T08:29:16.253 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:29:16.253 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying lvm2 is present... 2024-09-17T08:29:16.253 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying time synchronization is in place... 2024-09-17T08:29:16.261 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T08:29:16.261 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T08:29:16.267 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T08:29:16.267 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:29:16.274 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-09-17T08:29:16.280 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-09-17T08:29:16.280 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-09-17T08:29:16.280 INFO:teuthology.orchestra.run.smithi062.stdout:Repeating the final host check... 2024-09-17T08:29:16.304 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5.2.2 2024-09-17T08:29:16.304 INFO:teuthology.orchestra.run.smithi062.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T08:29:16.304 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl is present 2024-09-17T08:29:16.304 INFO:teuthology.orchestra.run.smithi062.stdout:lvcreate is present 2024-09-17T08:29:16.310 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T08:29:16.310 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T08:29:16.316 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T08:29:16.317 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:29:16.323 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Host looks OK 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Cluster fsid: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Acquiring lock 139626840427968 on /run/cephadm/d6ef9a88-74ce-11ef-bceb-c7b262605968.lock 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Lock 139626840427968 acquired on /run/cephadm/d6ef9a88-74ce-11ef-bceb-c7b262605968.lock 2024-09-17T08:29:16.330 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 3300 ... 2024-09-17T08:29:16.331 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 6789 ... 2024-09-17T08:29:16.331 INFO:teuthology.orchestra.run.smithi062.stdout:Base mon IP(s) is [172.21.15.62:3300, 172.21.15.62:6789], mon addrv is [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-09-17T08:29:16.334 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.62 metric 100 2024-09-17T08:29:16.334 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.62 metric 100 2024-09-17T08:29:16.337 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T08:29:16.337 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-09-17T08:29:16.337 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-09-17T08:29:16.339 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T08:29:16.339 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T08:29:16.339 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T08:29:16.339 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-17T08:29:16.340 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febb:d1c3/64 scope link noprefixroute 2024-09-17T08:29:16.340 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T08:29:16.340 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-09-17T08:29:16.340 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-09-17T08:29:16.340 INFO:teuthology.orchestra.run.smithi062.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T08:29:16.341 INFO:teuthology.orchestra.run.smithi062.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T08:29:16.341 INFO:teuthology.orchestra.run.smithi062.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:29:16.812 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T08:29:16.812 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T08:29:16.813 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T08:29:16.813 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T08:29:16.813 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:d8a707c21dc06a64315160cb2d8e524fa91943a344731b2a930ee3a716bebbdd 2024-09-17T08:29:16.813 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying config sha256:980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T08:29:16.813 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T08:29:17.809 INFO:teuthology.orchestra.run.smithi062.stdout:ceph: stdout ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T08:29:17.809 INFO:teuthology.orchestra.run.smithi062.stdout:Ceph version: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T08:29:17.809 INFO:teuthology.orchestra.run.smithi062.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T08:29:18.797 INFO:teuthology.orchestra.run.smithi062.stdout:stat: stdout 167 167 2024-09-17T08:29:18.798 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial keys... 2024-09-17T08:29:19.762 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQDfPelm5g1mCBAAR8mENuq/IhwSXyFjL6Tb9g== 2024-09-17T08:29:20.683 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQDgPelmSwDCBxAA88TGFcTw0jMzcMHUnwkp5w== 2024-09-17T08:29:21.748 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQDhPelmwXkkBBAAv5w7DQlMiW1j3dk2WVl8eQ== 2024-09-17T08:29:21.749 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial monmap... 2024-09-17T08:29:22.745 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T08:29:22.745 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-17T08:29:22.745 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:22.745 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout:monmaptool for smithi062 [v2:172.21.15.62:3300,v1:172.21.15.62:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout:setting min_mon_release = pacific 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: set fsid to d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:29:22.746 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mon... 2024-09-17T08:29:23.651 INFO:teuthology.orchestra.run.smithi062.stdout:create mon.smithi062 on 2024-09-17T08:29:24.016 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T08:29:24.215 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target. 2024-09-17T08:29:24.216 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target. 2024-09-17T08:29:24.450 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062 2024-09-17T08:29:24.450 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service: Unit ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service not loaded. 2024-09-17T08:29:24.630 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target.wants/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service → /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@.service. 2024-09-17T08:29:24.988 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:24 smithi062 podman[25332]: 2024-09-17 08:29:24.867264275 +0000 UTC m=+0.115239786 container create 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, io.buildah.version=1.37.2) 2024-09-17T08:29:25.150 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:29:25.150 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-09-17T08:29:25.157 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:29:25.157 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:29:25.157 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-09-17T08:29:25.157 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T08:29:25.158 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon to start... 2024-09-17T08:29:25.158 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon... 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 podman[25332]: 2024-09-17 08:29:25.077825497 +0000 UTC m=+0.325801017 container init 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b) 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 podman[25332]: 2024-09-17 08:29:25.082415622 +0000 UTC m=+0.330391135 container start 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 ceph-mon[25370]: mkfs d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 ceph-mon[25370]: mon.smithi062 is new leader, mons smithi062 in quorum (ranks 0) 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 bash[25332]: 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c 2024-09-17T08:29:25.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:25 smithi062 systemd[1]: Started Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968. 2024-09-17T08:29:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:26 smithi062 ceph-mon[25370]: mon.smithi062 is new leader, mons smithi062 in quorum (ranks 0) 2024-09-17T08:29:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:26 smithi062 ceph-mon[25370]: monmap e1: 1 mons at {smithi062=[v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:29:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:26 smithi062 ceph-mon[25370]: fsmap 2024-09-17T08:29:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:26 smithi062 ceph-mon[25370]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T08:29:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:26 smithi062 ceph-mon[25370]: mgrmap e1: no daemons active 2024-09-17T08:29:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:28 smithi062 ceph-mon[25370]: from='client.? 172.21.15.62:0/1150980376' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T08:29:34.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T08:29:34.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout id: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout services: 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi062 (age 2s) 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout data: 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T08:29:34.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:34.528 INFO:teuthology.orchestra.run.smithi062.stdout:mon is available 2024-09-17T08:29:34.528 INFO:teuthology.orchestra.run.smithi062.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T08:29:37.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:37 smithi062 ceph-mon[25370]: from='client.? 172.21.15.62:0/2555542463' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T08:29:37.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:37 smithi062 ceph-mon[25370]: from='client.? 172.21.15.62:0/2555542463' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T08:29:38.591 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:38.591 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T08:29:38.591 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:38.592 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T08:29:38.593 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T08:29:38.593 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T08:29:38.593 INFO:teuthology.orchestra.run.smithi062.stdout:Generating new minimal ceph.conf... 2024-09-17T08:29:39.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:39 smithi062 ceph-mon[25370]: from='client.? 172.21.15.62:0/880334502' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:29:39.704 INFO:teuthology.orchestra.run.smithi062.stdout:Restarting the monitor... 2024-09-17T08:29:40.006 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:39 smithi062 systemd[1]: Stopping Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968... 2024-09-17T08:29:40.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062[25347]: 2024-09-17T08:29:40.005+0000 7f170f865640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi062 -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-17T08:29:40.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062[25347]: 2024-09-17T08:29:40.005+0000 7f170f865640 -1 mon.smithi062@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T08:29:40.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 podman[25689]: 2024-09-17 08:29:40.016936661 +0000 UTC m=+0.107304336 container died 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=) 2024-09-17T08:29:40.658 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 podman[25689]: 2024-09-17 08:29:40.323134988 +0000 UTC m=+0.413502649 container cleanup 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, GIT_CLEAN=True, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=) 2024-09-17T08:29:40.658 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 bash[25689]: ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062 2024-09-17T08:29:40.658 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 podman[25707]: 2024-09-17 08:29:40.554987331 +0000 UTC m=+0.535851763 container remove 125d6785c4f38dcc4f526c3b52913e5c0330de56a91afb3d1763d360d01e271c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, org.label-schema.license=GPLv2, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True) 2024-09-17T08:29:41.003 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 systemd[1]: ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service: Deactivated successfully. 2024-09-17T08:29:41.003 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 systemd[1]: Stopped Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968. 2024-09-17T08:29:41.004 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 systemd[1]: Starting Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968... 2024-09-17T08:29:41.004 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 podman[25802]: 2024-09-17 08:29:40.785715814 +0000 UTC m=+0.016285433 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T08:29:41.004 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:40 smithi062 podman[25802]: 2024-09-17 08:29:40.889099655 +0000 UTC m=+0.119669274 container create ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T08:29:41.178 INFO:teuthology.orchestra.run.smithi062.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T08:29:41.397 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 podman[25802]: 2024-09-17 08:29:41.091526961 +0000 UTC m=+0.322096580 container init ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=) 2024-09-17T08:29:41.397 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 podman[25802]: 2024-09-17 08:29:41.096421731 +0000 UTC m=+0.326991350 container start ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731) 2024-09-17T08:29:41.397 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: pidfile_write: ignore empty --pid-file 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: load: jerasure load: lrc 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: RocksDB version: 7.9.2 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Git sha 0 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: DB SUMMARY 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: DB Session ID: N4046WJ8YYIWLYBVKDZK 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: CURRENT file: CURRENT 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T08:29:41.398 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi062/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi062/store.db: 000009.log size: 84109 ; 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.error_if_exists: 0 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.create_if_missing: 0 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.paranoid_checks: 1 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.env: 0x564ddd51cbc0 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.info_log: 0x564dddf50dc0 2024-09-17T08:29:41.399 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.statistics: (nil) 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.use_fsync: 0 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_log_file_size: 0 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T08:29:41.400 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_fallocate: 1 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.use_direct_reads: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.db_log_dir: 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.wal_dir: 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T08:29:41.401 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.write_buffer_manager: 0x564dddf5e320 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T08:29:41.402 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.unordered_write: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.row_cache: None 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.wal_filter: None 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.two_write_queues: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.wal_compression: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.atomic_flush: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T08:29:41.403 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.log_readahead_size: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_background_jobs: 2 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_background_compactions: -1 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_subcompactions: 1 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T08:29:41.404 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_open_files: -1 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_background_flushes: -1 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Compression algorithms supported: 2024-09-17T08:29:41.405 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kZSTD supported: 0 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kXpressCompression supported: 0 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kBZip2Compression supported: 0 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kLZ4Compression supported: 1 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kZlibCompression supported: 1 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: kSnappyCompression supported: 1 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi062/store.db/MANIFEST-000010 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T08:29:41.406 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.merge_operator: 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_filter: None 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x564dddf50a20) 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: cache_index_and_filter_blocks: 1 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: pin_top_level_index_and_filter: 1 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_type: 0 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: data_block_index_type: 0 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_shortening: 1 2024-09-17T08:29:41.407 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: checksum: 4 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: no_block_cache: 0 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache: 0x564dddf45350 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_name: BinnedLRUCache 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_options: 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: capacity : 536870912 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: num_shard_bits : 4 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: strict_capacity_limit : 0 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: high_pri_pool_ratio: 0.000 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_cache_compressed: (nil) 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: persistent_cache: (nil) 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_size: 4096 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_size_deviation: 10 2024-09-17T08:29:41.408 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_restart_interval: 16 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: index_block_restart_interval: 1 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: metadata_block_size: 4096 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: partition_filters: 0 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: use_delta_encoding: 1 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: filter_policy: bloomfilter 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: whole_key_filtering: 1 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: verify_compression: 0 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: read_amp_bytes_per_bit: 0 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: format_version: 5 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: enable_index_compression: 1 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: block_align: 0 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: max_auto_readahead_size: 262144 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: prepopulate_block_cache: 0 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: initial_auto_readahead_size: 8192 2024-09-17T08:29:41.409 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression: NoCompression 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.num_levels: 7 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T08:29:41.411 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T08:29:41.412 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T08:29:41.413 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T08:29:41.414 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.inplace_update_support: 0 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T08:29:41.415 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.bloom_locality: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.max_successive_merges: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.ttl: 2592000 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enable_blob_files: false 2024-09-17T08:29:41.416 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.min_blob_size: 0 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi062/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-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T08:29:41.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f1cee747-035e-4dfa-a867-bc6e475288c4 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561781123009, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561781123905, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80759, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 254, "table_properties": {"data_size": 78916, "index_size": 227, "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": 9783, "raw_average_key_size": 46, "raw_value_size": 73310, "raw_average_value_size": 350, "num_data_blocks": 10, "num_entries": 209, "num_filter_entries": 209, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726561781, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f1cee747-035e-4dfa-a867-bc6e475288c4", "db_session_id": "N4046WJ8YYIWLYBVKDZK", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561781124003, "job": 1, "event": "recovery_finished"} 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi062/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x564dddf70e00 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: DB pointer 0x564dde064000 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** DB Stats ** 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:29:41.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** Compaction Stats [default] ** 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: L0 2/0 80.76 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 134.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Sum 2/0 80.76 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 134.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.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 134.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** Compaction Stats [default] ** 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T08:29:41.419 INFO:journalctl@ceph.mon.smithi062.smithi062.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 134.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Cumulative compaction: 0.00 GB write, 24.26 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Interval compaction: 0.00 GB write, 24.26 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Block cache BinnedLRUCache@0x564dddf45350#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-17T08:29:41.420 INFO:journalctl@ceph.mon.smithi062.smithi062.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-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: starting mon.smithi062 rank 0 at public addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] at bind addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi062 fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???) e1 preinit fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).mds e1 new map 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).mds e1 print_map 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: e1 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.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} 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: legacy client fscid: -1 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: No filesystems configured 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T08:29:41.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 bash[25802]: ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 systemd[1]: Started Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968. 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mon.smithi062 is new leader, mons smithi062 in quorum (ranks 0) 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: monmap e1: 1 mons at {smithi062=[v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: fsmap 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T08:29:41.422 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:41 smithi062 ceph-mon[25840]: mgrmap e1: no daemons active 2024-09-17T08:29:42.200 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T08:29:42.222 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:29:42.222 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mgr... 2024-09-17T08:29:42.222 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T08:29:42.223 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T08:29:42.223 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-17T08:29:42.483 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mgr.smithi062.kronsk 2024-09-17T08:29:42.483 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mgr.smithi062.kronsk.service: Unit ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mgr.smithi062.kronsk.service not loaded. 2024-09-17T08:29:42.646 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968.target.wants/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mgr.smithi062.kronsk.service → /etc/systemd/system/ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@.service. 2024-09-17T08:29:42.997 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:42 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2428051469' entity='client.admin' 2024-09-17T08:29:44.156 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:29:44.156 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-09-17T08:29:44.163 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:29:44.163 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:29:44.164 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-09-17T08:29:44.164 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T08:29:44.172 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:29:44.172 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-09-17T08:29:44.179 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:29:44.180 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:29:44.180 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-09-17T08:29:44.180 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-17T08:29:44.180 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr to start... 2024-09-17T08:29:44.180 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr... 2024-09-17T08:29:45.045 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:44 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2126972730' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "d6ef9a88-74ce-11ef-bceb-c7b262605968", 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:29:45.326 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "smithi062" 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:29:45.327 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:29:45.328 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:29:45.333 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:45.334 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:29:45.335 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:29:25.121519+0000", 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:45.336 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:29:45.337 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:29:45.337 INFO:teuthology.orchestra.run.smithi062.stdout:mgr not available, waiting (1/15)... 2024-09-17T08:29:48.186 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:47 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2805724009' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:29:48.522 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:48.522 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:29:48.523 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "d6ef9a88-74ce-11ef-bceb-c7b262605968", 2024-09-17T08:29:48.523 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:29:48.523 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:29:48.523 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:29:48.523 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:48.524 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "smithi062" 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:48.525 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:29:48.526 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:29:48.527 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:29:48.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:29:48.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:29:48.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:29:48.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:29:48.528 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:29:48.529 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:29:48.530 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:29:48.531 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:48.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:29:25.121519+0000", 2024-09-17T08:29:48.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:48.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:48.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:29:48.532 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:29:48.533 INFO:teuthology.orchestra.run.smithi062.stdout:mgr not available, waiting (2/15)... 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: Activating manager daemon smithi062.kronsk 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: mgrmap e2: smithi062.kronsk(active, starting, since 0.00284073s) 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:29:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi062.kronsk", "id": "smithi062.kronsk"}]: dispatch 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: Manager daemon smithi062.kronsk is now available 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/trash_purge_schedule"}]: dispatch 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' 2024-09-17T08:29:49.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:48 smithi062 ceph-mon[25840]: from='mgr.14100 172.21.15.62:0/3040912816' entity='mgr.smithi062.kronsk' 2024-09-17T08:29:50.654 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:50 smithi062 ceph-mon[25840]: mgrmap e3: smithi062.kronsk(active, since 1.00727s) 2024-09-17T08:29:51.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:51 smithi062 ceph-mon[25840]: mgrmap e4: smithi062.kronsk(active, since 2s) 2024-09-17T08:29:51.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:51 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1898201817' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T08:29:51.905 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:51.905 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:29:51.905 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "d6ef9a88-74ce-11ef-bceb-c7b262605968", 2024-09-17T08:29:51.905 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "smithi062" 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T08:29:51.906 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T08:29:51.907 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T08:29:51.910 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T08:29:51.910 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:51.911 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T08:29:51.912 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T08:29:25.121519+0000", 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:29:51.913 INFO:teuthology.orchestra.run.smithi062.stdout:mgr is available 2024-09-17T08:29:52.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:52 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2702941053' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T08:29:53.077 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:53.077 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T08:29:53.078 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling cephadm module... 2024-09-17T08:29:54.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:53 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/485771102' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T08:29:55.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/485771102' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T08:29:55.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:54 smithi062 ceph-mon[25840]: mgrmap e5: smithi062.kronsk(active, since 5s) 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "active_name": "smithi062.kronsk", 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for the mgr to restart... 2024-09-17T08:29:55.691 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr epoch 5... 2024-09-17T08:29:55.945 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:55 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/881365911' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: Active manager daemon smithi062.kronsk restarted 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: Activating manager daemon smithi062.kronsk 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: mgrmap e6: smithi062.kronsk(active, starting, since 0.00365607s) 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi062.kronsk", "id": "smithi062.kronsk"}]: dispatch 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:29:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: Manager daemon smithi062.kronsk is now available 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:29:59.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:58 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/trash_purge_schedule"}]: dispatch 2024-09-17T08:30:00.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:59 smithi062 ceph-mon[25840]: Found migration_current of "None". Setting to last migration. 2024-09-17T08:30:00.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:59 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:00.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:59 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:00.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:29:59 smithi062 ceph-mon[25840]: mgrmap e7: smithi062.kronsk(active, since 1.00901s) 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:mgr epoch 5 is available 2024-09-17T08:30:00.296 INFO:teuthology.orchestra.run.smithi062.stdout:Setting orchestrator backend to cephadm... 2024-09-17T08:30:00.944 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:00 smithi062 ceph-mon[25840]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T08:30:00.945 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:00 smithi062 ceph-mon[25840]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T08:30:01.850 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:01 smithi062 ceph-mon[25840]: mgrmap e8: smithi062.kronsk(active, since 2s) 2024-09-17T08:30:01.850 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:01 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:01.850 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:01 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:30:01.850 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:01 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:00] ENGINE Bus STARTING 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:01] ENGINE Serving on http://172.21.15.62:8765 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:01] ENGINE Serving on https://172.21.15.62:7150 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:01] ENGINE Bus STARTED 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:02 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:01] ENGINE Error in HTTPServer.serve 2024-09-17T08:30:02.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Traceback (most recent call last): 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._connections.run(self.expiration_interval) 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._run(expiration_interval) 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:30:02.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s = self.context.wrap_socket( 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: return self.sslsocket_class._create( 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self.do_handshake() 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._sslobj.do_handshake() 2024-09-17T08:30:02.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:30:02.836 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T08:30:02.836 INFO:teuthology.orchestra.run.smithi062.stdout:Generating ssh key... 2024-09-17T08:30:03.934 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:03 smithi062 ceph-mon[25840]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:03.935 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:03 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:03.935 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:03 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:05.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:04 smithi062 ceph-mon[25840]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:04 smithi062 ceph-mon[25840]: Generating ssh key... 2024-09-17T08:30:05.410 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVWDCsRSKdZxewoeB4OZVSg10J3IBt3Qq9O7wRgkgxFbo0vHcZhMqAJut6uYoirp8TZa1stBgafehRA4vq2ow7Vted/NdSq3YFkHBqDE6S1ZPpDdhJ8QfJxr9toioKK7W1OiFnk/kRffJVM+FLXxsEnvWYwtEpVWov8y3oruuGgWtqiRyNy8HXJhCqu2FsT1g0pMYTxbpJLc6e6F8gicEitE2E7DvqYCh/dKaccSVoBJHVa0DgxlgRRWbuinwHlrXnx7U0inJnM9YxM76oBBxR0XhFrGVRY4BE5NXIvXcpvknwpWEY2EPXa3DpUysje6STDBY+pFcjND9q/6bOBOD++oxHcBWntemUP4H8mFH3ETYKtUYUIRuq/ySS0iSjjtrClp+y82yAgSAyvnIDb4EPNiZwUdffEEcCWB/W6Ihp97qTq3e1znfVXCwxN7hIG13uN0gAY7CWuacfSstGS60L58/WPON6fQ2L59XVBDJ38duEV3NwOZzubT+/kWQtIk= ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:30:05.410 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:30:05.410 INFO:teuthology.orchestra.run.smithi062.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T08:30:05.419 INFO:teuthology.orchestra.run.smithi062.stdout:Adding host smithi062... 2024-09-17T08:30:06.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:05 smithi062 ceph-mon[25840]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:07.140 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:06 smithi062 ceph-mon[25840]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi062", "addr": "172.21.15.62", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:08.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:07 smithi062 ceph-mon[25840]: Deploying cephadm binary to smithi062 2024-09-17T08:30:10.067 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Added host 'smithi062' with addr '172.21.15.62' 2024-09-17T08:30:10.068 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying mon service with default placement... 2024-09-17T08:30:10.575 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:10 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:10.575 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:10 smithi062 ceph-mon[25840]: Added host smithi062 2024-09-17T08:30:10.575 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:10 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:30:12.011 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:11 smithi062 ceph-mon[25840]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:12.011 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:11 smithi062 ceph-mon[25840]: Saving service mon spec with placement count:5 2024-09-17T08:30:12.011 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:11 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:12.011 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:11 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:12.013 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T08:30:12.013 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying mgr service with default placement... 2024-09-17T08:30:13.281 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T08:30:13.281 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying crash service with default placement... 2024-09-17T08:30:13.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:13 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:13.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:13 smithi062 ceph-mon[25840]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:13.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:13 smithi062 ceph-mon[25840]: Saving service mgr spec with placement count:2 2024-09-17T08:30:13.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:13 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:14.790 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-17T08:30:14.790 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying ceph-exporter service with default placement... 2024-09-17T08:30:15.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:14 smithi062 ceph-mon[25840]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:15.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:14 smithi062 ceph-mon[25840]: Saving service crash spec with placement * 2024-09-17T08:30:15.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:14 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:15.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:14 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:16.030 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-17T08:30:16.030 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying prometheus service with default placement... 2024-09-17T08:30:16.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:16 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:16.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:16 smithi062 ceph-mon[25840]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:16.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:16 smithi062 ceph-mon[25840]: Saving service ceph-exporter spec with placement * 2024-09-17T08:30:16.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:16 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:17.922 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:17 smithi062 ceph-mon[25840]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:17.922 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:17 smithi062 ceph-mon[25840]: Saving service prometheus spec with placement count:1 2024-09-17T08:30:17.922 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:17 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:18.092 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-17T08:30:18.092 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying grafana service with default placement... 2024-09-17T08:30:19.332 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-17T08:30:19.333 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying node-exporter service with default placement... 2024-09-17T08:30:19.973 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:19 smithi062 ceph-mon[25840]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:19.973 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:19 smithi062 ceph-mon[25840]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:19.973 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:19 smithi062 ceph-mon[25840]: Saving service grafana spec with placement count:1 2024-09-17T08:30:19.973 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:19 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:20.572 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-17T08:30:20.573 INFO:teuthology.orchestra.run.smithi062.stdout:Deploying alertmanager service with default placement... 2024-09-17T08:30:21.183 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:20 smithi062 ceph-mon[25840]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:21.183 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:20 smithi062 ceph-mon[25840]: Saving service node-exporter spec with placement * 2024-09-17T08:30:21.183 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:20 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:21.183 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:20 smithi062 ceph-mon[25840]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:21.728 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-17T08:30:22.417 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:22 smithi062 ceph-mon[25840]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:22.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:22 smithi062 ceph-mon[25840]: Saving service alertmanager spec with placement count:1 2024-09-17T08:30:22.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:22 smithi062 ceph-mon[25840]: from='mgr.14118 172.21.15.62:0/1025104208' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:23.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:23 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3244771346' entity='client.admin' 2024-09-17T08:30:23.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:23 smithi062 ceph-mon[25840]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:24.115 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling the dashboard module... 2024-09-17T08:30:25.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:24 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3018539042' entity='client.admin' 2024-09-17T08:30:25.901 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:25 smithi062 ceph-mon[25840]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:25.902 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:25 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/800617342' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T08:30:26.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:26 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/800617342' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T08:30:26.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:26 smithi062 ceph-mon[25840]: mgrmap e9: smithi062.kronsk(active, since 26s) 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "active_name": "smithi062.kronsk", 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T08:30:27.371 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:30:27.372 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for the mgr to restart... 2024-09-17T08:30:27.372 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr epoch 9... 2024-09-17T08:30:27.753 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:27 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2773788173' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T08:30:30.811 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: Active manager daemon smithi062.kronsk restarted 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: Activating manager daemon smithi062.kronsk 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: mgrmap e10: smithi062.kronsk(active, starting, since 0.00309492s) 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi062.kronsk", "id": "smithi062.kronsk"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: Manager daemon smithi062.kronsk is now available 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:30:30.812 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:30:30.813 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:30 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/trash_purge_schedule"}]: dispatch 2024-09-17T08:30:32.430 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-09-17T08:30:32.430 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T08:30:32.430 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T08:30:32.430 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-09-17T08:30:32.431 INFO:teuthology.orchestra.run.smithi062.stdout:mgr epoch 9 is available 2024-09-17T08:30:32.431 INFO:teuthology.orchestra.run.smithi062.stdout:Generating a dashboard self-signed certificate... 2024-09-17T08:30:32.692 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:32 smithi062 ceph-mon[25840]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T08:30:32.692 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:32 smithi062 ceph-mon[25840]: mgrmap e11: smithi062.kronsk(active, since 1.00527s) 2024-09-17T08:30:32.692 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:32 smithi062 ceph-mon[25840]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T08:30:32.693 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:32 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:33.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:32] ENGINE Bus STARTING 2024-09-17T08:30:33.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:32] ENGINE Serving on https://172.21.15.62:7150 2024-09-17T08:30:33.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:32] ENGINE Error in HTTPServer.serve 2024-09-17T08:30:33.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Traceback (most recent call last): 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._connections.run(self.expiration_interval) 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._run(expiration_interval) 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s = self.context.wrap_socket( 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: return self.sslsocket_class._create( 2024-09-17T08:30:33.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self.do_handshake() 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._sslobj.do_handshake() 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:32] ENGINE Serving on http://172.21.15.62:8765 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: [17/Sep/2024:08:30:32] ENGINE Bus STARTED 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: mgrmap e12: smithi062.kronsk(active, since 2s) 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:33.802 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:33 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:33.822 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T08:30:33.822 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial admin user... 2024-09-17T08:30:34.646 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:34 smithi062 ceph-mon[25840]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:35.914 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:35 smithi062 ceph-mon[25840]: 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-17T08:30:35.914 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:35 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:35.916 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$MDM6znis4fM0XhZUpnUlcuAW2lro.l8oziSmxCoQCHmfDx47hy8dS", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726561834, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T08:30:35.916 INFO:teuthology.orchestra.run.smithi062.stdout:Fetching dashboard port number... 2024-09-17T08:30:36.853 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:36 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2321553513' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T08:30:37.123 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T08:30:37.134 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T08:30:37.134 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-09-17T08:30:37.142 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T08:30:37.142 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-09-17T08:30:37.142 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-09-17T08:30:37.142 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout:Ceph Dashboard is now available at: 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout: URL: https://smithi062.front.sepia.ceph.com:8443/ 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout: User: admin 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout: Password: oixfr211s7 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:37.144 INFO:teuthology.orchestra.run.smithi062.stdout:Saving cluster configuration to /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config directory 2024-09-17T08:30:37.145 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling autotune for osd_memory_target 2024-09-17T08:30:37.780 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:37 smithi062 ceph-mon[25840]: mgrmap e13: smithi062.kronsk(active, since 6s) 2024-09-17T08:30:39.519 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: ceph telemetry on 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.520 INFO:teuthology.orchestra.run.smithi062.stdout:For more information see: 2024-09-17T08:30:39.521 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.521 INFO:teuthology.orchestra.run.smithi062.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T08:30:39.521 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:39.521 INFO:teuthology.orchestra.run.smithi062.stdout:Bootstrap complete. 2024-09-17T08:30:39.553 INFO:tasks.cephadm:Fetching config... 2024-09-17T08:30:39.554 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:30:39.554 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T08:30:39.571 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T08:30:39.571 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:30:39.572 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T08:30:39.628 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T08:30:39.628 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:30:39.628 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/keyring of=/dev/stdout 2024-09-17T08:30:39.694 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T08:30:39.694 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:30:39.695 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T08:30:39.750 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T08:30:39.750 DEBUG:teuthology.orchestra.run.smithi062:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVWDCsRSKdZxewoeB4OZVSg10J3IBt3Qq9O7wRgkgxFbo0vHcZhMqAJut6uYoirp8TZa1stBgafehRA4vq2ow7Vted/NdSq3YFkHBqDE6S1ZPpDdhJ8QfJxr9toioKK7W1OiFnk/kRffJVM+FLXxsEnvWYwtEpVWov8y3oruuGgWtqiRyNy8HXJhCqu2FsT1g0pMYTxbpJLc6e6F8gicEitE2E7DvqYCh/dKaccSVoBJHVa0DgxlgRRWbuinwHlrXnx7U0inJnM9YxM76oBBxR0XhFrGVRY4BE5NXIvXcpvknwpWEY2EPXa3DpUysje6STDBY+pFcjND9q/6bOBOD++oxHcBWntemUP4H8mFH3ETYKtUYUIRuq/ySS0iSjjtrClp+y82yAgSAyvnIDb4EPNiZwUdffEEcCWB/W6Ihp97qTq3e1znfVXCwxN7hIG13uN0gAY7CWuacfSstGS60L58/WPON6fQ2L59XVBDJ38duEV3NwOZzubT+/kWQtIk= ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T08:30:39.825 INFO:teuthology.orchestra.run.smithi062.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVWDCsRSKdZxewoeB4OZVSg10J3IBt3Qq9O7wRgkgxFbo0vHcZhMqAJut6uYoirp8TZa1stBgafehRA4vq2ow7Vted/NdSq3YFkHBqDE6S1ZPpDdhJ8QfJxr9toioKK7W1OiFnk/kRffJVM+FLXxsEnvWYwtEpVWov8y3oruuGgWtqiRyNy8HXJhCqu2FsT1g0pMYTxbpJLc6e6F8gicEitE2E7DvqYCh/dKaccSVoBJHVa0DgxlgRRWbuinwHlrXnx7U0inJnM9YxM76oBBxR0XhFrGVRY4BE5NXIvXcpvknwpWEY2EPXa3DpUysje6STDBY+pFcjND9q/6bOBOD++oxHcBWntemUP4H8mFH3ETYKtUYUIRuq/ySS0iSjjtrClp+y82yAgSAyvnIDb4EPNiZwUdffEEcCWB/W6Ihp97qTq3e1znfVXCwxN7hIG13uN0gAY7CWuacfSstGS60L58/WPON6fQ2L59XVBDJ38duEV3NwOZzubT+/kWQtIk= ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:30:39.838 DEBUG:teuthology.orchestra.run.smithi077:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVWDCsRSKdZxewoeB4OZVSg10J3IBt3Qq9O7wRgkgxFbo0vHcZhMqAJut6uYoirp8TZa1stBgafehRA4vq2ow7Vted/NdSq3YFkHBqDE6S1ZPpDdhJ8QfJxr9toioKK7W1OiFnk/kRffJVM+FLXxsEnvWYwtEpVWov8y3oruuGgWtqiRyNy8HXJhCqu2FsT1g0pMYTxbpJLc6e6F8gicEitE2E7DvqYCh/dKaccSVoBJHVa0DgxlgRRWbuinwHlrXnx7U0inJnM9YxM76oBBxR0XhFrGVRY4BE5NXIvXcpvknwpWEY2EPXa3DpUysje6STDBY+pFcjND9q/6bOBOD++oxHcBWntemUP4H8mFH3ETYKtUYUIRuq/ySS0iSjjtrClp+y82yAgSAyvnIDb4EPNiZwUdffEEcCWB/W6Ihp97qTq3e1znfVXCwxN7hIG13uN0gAY7CWuacfSstGS60L58/WPON6fQ2L59XVBDJ38duEV3NwOZzubT+/kWQtIk= ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T08:30:39.886 INFO:teuthology.orchestra.run.smithi077.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDeVWDCsRSKdZxewoeB4OZVSg10J3IBt3Qq9O7wRgkgxFbo0vHcZhMqAJut6uYoirp8TZa1stBgafehRA4vq2ow7Vted/NdSq3YFkHBqDE6S1ZPpDdhJ8QfJxr9toioKK7W1OiFnk/kRffJVM+FLXxsEnvWYwtEpVWov8y3oruuGgWtqiRyNy8HXJhCqu2FsT1g0pMYTxbpJLc6e6F8gicEitE2E7DvqYCh/dKaccSVoBJHVa0DgxlgRRWbuinwHlrXnx7U0inJnM9YxM76oBBxR0XhFrGVRY4BE5NXIvXcpvknwpWEY2EPXa3DpUysje6STDBY+pFcjND9q/6bOBOD++oxHcBWntemUP4H8mFH3ETYKtUYUIRuq/ySS0iSjjtrClp+y82yAgSAyvnIDb4EPNiZwUdffEEcCWB/W6Ihp97qTq3e1znfVXCwxN7hIG13uN0gAY7CWuacfSstGS60L58/WPON6fQ2L59XVBDJ38duEV3NwOZzubT+/kWQtIk= ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:30:39.899 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T08:30:40.174 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:30:40.297 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:40 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1629714677' entity='client.admin' 2024-09-17T08:30:43.382 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T08:30:43.382 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T08:30:44.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:43 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3844473988' entity='client.admin' 2024-09-17T08:30:44.207 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:30:45.379 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd/host:smithi062", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi062", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi062", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T08:30:45.640 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:30:45.641 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:45 smithi062 ceph-mon[25840]: Deploying daemon ceph-exporter.smithi062 on smithi062 2024-09-17T08:30:46.988 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi077 2024-09-17T08:30:46.988 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:30:46.988 DEBUG:teuthology.orchestra.run.smithi077:> dd of=/etc/ceph/ceph.conf 2024-09-17T08:30:47.007 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:30:47.007 DEBUG:teuthology.orchestra.run.smithi077:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:30:47.065 INFO:tasks.cephadm:Adding host smithi077 to orchestrator... 2024-09-17T08:30:47.065 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch host add smithi077 2024-09-17T08:30:47.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:47 smithi062 ceph-mon[25840]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:47 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:47.504 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:30:51.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi077", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:30:51.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:51.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:51.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:51.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi062", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi062", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: Deploying daemon crash.smithi062 on smithi062 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:51.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:50 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:51.993 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:51 smithi062 ceph-mon[25840]: Deploying cephadm binary to smithi077 2024-09-17T08:30:53.035 INFO:teuthology.orchestra.run.smithi062.stdout:Added host 'smithi077' with addr '172.21.15.77' 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: Deploying daemon node-exporter.smithi062 on smithi062 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:53.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:53 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:53.604 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T08:30:53.820 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:30:54.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:54 smithi062 ceph-mon[25840]: Added host smithi077 2024-09-17T08:30:55.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:55 smithi062 ceph-mon[25840]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:56.621 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:30:56.621 INFO:teuthology.orchestra.run.smithi062.stdout:[{"addr": "172.21.15.62", "hostname": "smithi062", "labels": [], "status": ""}, {"addr": "172.21.15.77", "hostname": "smithi077", "labels": [], "status": ""}] 2024-09-17T08:30:56.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:56 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:57.724 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:57 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:30:57.749 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T08:30:57.750 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T08:30:57.969 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:30:58.698 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:58 smithi062 ceph-mon[25840]: Deploying daemon alertmanager.smithi062 on smithi062 2024-09-17T08:30:59.854 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:30:59 smithi062 ceph-mon[25840]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:00.616 INFO:teuthology.orchestra.run.smithi062.stderr:adjusted tunables profile to default 2024-09-17T08:31:01.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3017809170' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T08:31:01.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:00 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:01.812 INFO:tasks.cephadm:Adding mon.smithi062 on smithi062 2024-09-17T08:31:01.812 INFO:tasks.cephadm:Adding mon.smithi077 on smithi077 2024-09-17T08:31:01.812 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch apply mon '2;smithi062:172.21.15.62=smithi062;smithi077:172.21.15.77=smithi077' 2024-09-17T08:31:02.030 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:02.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:01 smithi062 ceph-mon[25840]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:02.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:01 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3017809170' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T08:31:02.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:01 smithi062 ceph-mon[25840]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T08:31:02.072 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:03.934 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:03 smithi062 ceph-mon[25840]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:03.956 INFO:teuthology.orchestra.run.smithi077.stdout:Scheduled mon update... 2024-09-17T08:31:04.539 DEBUG:teuthology.orchestra.run.smithi077:mon.smithi077> sudo journalctl -f -n 0 -u ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi077.service 2024-09-17T08:31:04.541 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:04.542 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:04.761 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:04.805 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:05.207 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:04 smithi062 ceph-mon[25840]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi062:172.21.15.62=smithi062;smithi077:172.21.15.77=smithi077", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:31:05.208 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:04 smithi062 ceph-mon[25840]: Saving service mon spec with placement smithi062:172.21.15.62=smithi062;smithi077:172.21.15.77=smithi077;count:2 2024-09-17T08:31:05.208 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:04 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:05.208 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:04 smithi062 ceph-mon[25840]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:06.587 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:06.587 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:06.588 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/292362991' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:07.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:07.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T08:31:07.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:07 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:08.183 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:08.184 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:08.377 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:08.420 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:08.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:08 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T08:31:08.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:08 smithi062 ceph-mon[25840]: Deploying daemon grafana.smithi062 on smithi062 2024-09-17T08:31:09.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:09 smithi062 ceph-mon[25840]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:10.260 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:10.260 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:10.260 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:10.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:10 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/3880350073' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:11.785 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:11.785 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:11.995 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:12.037 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:12.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:11 smithi062 ceph-mon[25840]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:12.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:11 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:13.713 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:13.714 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:13.714 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:14.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:13 smithi062 ceph-mon[25840]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:14.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:14 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/282664978' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:15.321 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:15.321 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:15.514 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:15.558 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:15.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:15 smithi062 ceph-mon[25840]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:17.175 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:17.175 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:17.176 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:17.775 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:17.775 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/272362520' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:17.775 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.775 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.775 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.776 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.776 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.776 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.776 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:17.776 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:17 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:18.740 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:18.740 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:18.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:18 smithi062 ceph-mon[25840]: Deploying daemon prometheus.smithi062 on smithi062 2024-09-17T08:31:18.934 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:18.977 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:20.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:19 smithi062 ceph-mon[25840]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:20.630 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:20.630 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:20.630 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:21 smithi062 ceph-mon[25840]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:21 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:21 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/4013167508' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:22.168 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:22.168 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:22.361 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:22.405 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:24.031 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:24.032 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:24.032 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:24.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:23 smithi062 ceph-mon[25840]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:24.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:24 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1757081952' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:25.713 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:25.713 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:25.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:25 smithi062 ceph-mon[25840]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:25.904 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:25.947 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:27.592 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:27.592 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:27.593 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:27.728 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:27 smithi062 ceph-mon[25840]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:27.728 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:27 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/746055859' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:29.189 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:29.190 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:29.238 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:28 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:29.239 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:28 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:29.239 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:28 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:29.239 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:28 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-17T08:31:29.239 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:28 smithi062 ceph-mon[25840]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:29.385 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:29.428 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:30.175 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:29 smithi062 ceph-mon[25840]: from='mgr.14162 172.21.15.62:0/3057339597' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T08:31:30.175 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:29 smithi062 ceph-mon[25840]: mgrmap e14: smithi062.kronsk(active, since 58s) 2024-09-17T08:31:31.045 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:31.045 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:31.046 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:31.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:31 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/4108356205' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:32.574 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:32.574 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:32.759 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:32.802 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: Active manager daemon smithi062.kronsk restarted 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: Activating manager daemon smithi062.kronsk 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: mgrmap e15: smithi062.kronsk(active, starting, since 0.00539164s) 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi062.kronsk", "id": "smithi062.kronsk"}]: dispatch 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: Manager daemon smithi062.kronsk is now available 2024-09-17T08:31:34.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:31:34.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:34.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:31:34.435 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:34.436 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:34.436 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:35.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/mirror_snapshot_schedule"}]: dispatch 2024-09-17T08:31:35.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi062.kronsk/trash_purge_schedule"}]: dispatch 2024-09-17T08:31:35.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:34 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2449622251' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:35.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:35.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:34 smithi062 ceph-mon[25840]: mgrmap e16: smithi062.kronsk(active, since 1.0056s) 2024-09-17T08:31:36.074 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:36.074 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: [17/Sep/2024:08:31:35] ENGINE Bus STARTING 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: [17/Sep/2024:08:31:35] ENGINE Serving on https://172.21.15.62:7150 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: [17/Sep/2024:08:31:35] ENGINE Error in HTTPServer.serve 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: Traceback (most recent call last): 2024-09-17T08:31:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._connections.run(self.expiration_interval) 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._run(expiration_interval) 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: s = self.context.wrap_socket( 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: return self.sslsocket_class._create( 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T08:31:36.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self.do_handshake() 2024-09-17T08:31:36.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T08:31:36.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: self._sslobj.do_handshake() 2024-09-17T08:31:36.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T08:31:36.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: [17/Sep/2024:08:31:35] ENGINE Serving on http://172.21.15.62:8765 2024-09-17T08:31:36.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:36 smithi062 ceph-mon[25840]: [17/Sep/2024:08:31:35] ENGINE Bus STARTED 2024-09-17T08:31:36.710 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:37.095 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:38.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:37 smithi062 ceph-mon[25840]: mgrmap e17: smithi062.kronsk(active, since 2s) 2024-09-17T08:31:38.992 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:38.993 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:38.993 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:39.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:39 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2816289832' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:40.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:40.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:40.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:40.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:40.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd/host:smithi077", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:31:40.761 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:40.761 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:40.948 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:40.990 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:42.718 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:42.719 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:42.719 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:43.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:42 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/877982781' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:44.297 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:44.297 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:44.489 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:44.532 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T08:31:45.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:45.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:45.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:45.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:45.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd/host:smithi062", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:31:45.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:31:45.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:31:46.397 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:46.397 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:46.397 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi062:/etc/ceph/ceph.conf 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi077:/etc/ceph/ceph.conf 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi062:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi077:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi077:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi062:/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:31:47.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi077:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: Updating smithi062:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi077", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi077", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:31:47.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:46 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1188326747' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:48.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:47 smithi062 ceph-mon[25840]: Deploying daemon ceph-exporter.smithi077 on smithi077 2024-09-17T08:31:48.727 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:48.727 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:49.167 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:31:49.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi077", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi077", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:31:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:50 smithi062 ceph-mon[25840]: Deploying daemon crash.smithi077 on smithi077 2024-09-17T08:31:51.961 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:51.961 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:51.961 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:52.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:52 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1750963228' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:53.735 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:53.735 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:53.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:53 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:53.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:53 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:53.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:53 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:53.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:53 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:53.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:53 smithi062 ceph-mon[25840]: Deploying daemon node-exporter.smithi077 on smithi077 2024-09-17T08:31:53.926 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:31:55.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:54 smithi062 ceph-mon[25840]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:55.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:56.942 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:31:56.942 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:31:56.942 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:31:57.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:56 smithi062 ceph-mon[25840]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/3174917809' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi077.hztgqn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:31:58.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi077.hztgqn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T08:31:58.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:31:58.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:31:58.533 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:31:58.534 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:31:58.733 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:31:59.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:58 smithi062 ceph-mon[25840]: Deploying daemon mgr.smithi077.hztgqn on smithi077 2024-09-17T08:31:59.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:58 smithi062 ceph-mon[25840]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:00.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:31:59 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:00.668 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:32:00.668 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:32:00.669 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:32:01.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:00 smithi062 ceph-mon[25840]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:01.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1313268825' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:32:02.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:02.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:01 smithi062 ceph-mon[25840]: Deploying daemon mon.smithi077 on smithi077 2024-09-17T08:32:02.493 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:32:02.493 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:32:03.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:02 smithi062 ceph-mon[25840]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:03.604 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi077/config 2024-09-17T08:32:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:04 smithi062 ceph-mon[25840]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:05.541 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 podman[35635]: 2024-09-17 08:32:05.420594482 +0000 UTC m=+0.507545863 container create b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, maintainer=Guillaume Abrioux ) 2024-09-17T08:32:05.563 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:32:05.563 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":1,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:29:22.122484Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T08:32:05.563 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 1 2024-09-17T08:32:05.871 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 podman[35635]: 2024-09-17 08:32:05.623279547 +0000 UTC m=+0.710230939 container init b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 podman[35635]: 2024-09-17 08:32:05.629462759 +0000 UTC m=+0.716414148 container start b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=) 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: pidfile_write: ignore empty --pid-file 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: load: jerasure load: lrc 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: RocksDB version: 7.9.2 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Git sha 0 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T08:32:05.872 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: DB SUMMARY 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: DB Session ID: CRR07BH44XK1BEOM1LNO 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: CURRENT file: CURRENT 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi077/store.db dir, Total Num: 0, files: 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi077/store.db: 000004.log size: 511 ; 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.error_if_exists: 0 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.create_if_missing: 0 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.paranoid_checks: 1 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T08:32:05.873 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.env: 0x557e77d35bc0 2024-09-17T08:32:05.874 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T08:32:05.874 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.info_log: 0x557e7a0e4dc0 2024-09-17T08:32:05.874 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T08:32:05.875 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.statistics: (nil) 2024-09-17T08:32:05.875 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.use_fsync: 0 2024-09-17T08:32:05.875 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_log_file_size: 0 2024-09-17T08:32:05.875 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_fallocate: 1 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.use_direct_reads: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.db_log_dir: 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.wal_dir: 2024-09-17T08:32:05.876 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.write_buffer_manager: 0x557e7a0f2320 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T08:32:05.877 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.unordered_write: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.row_cache: None 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.wal_filter: None 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T08:32:05.878 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.two_write_queues: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.wal_compression: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.atomic_flush: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.log_readahead_size: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T08:32:05.879 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_background_jobs: 2 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_background_compactions: -1 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_subcompactions: 1 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_open_files: -1 2024-09-17T08:32:05.880 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_background_flushes: -1 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Compression algorithms supported: 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kZSTD supported: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kXpressCompression supported: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kBZip2Compression supported: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kLZ4Compression supported: 1 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kZlibCompression supported: 1 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: kSnappyCompression supported: 1 2024-09-17T08:32:05.881 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi077/store.db/MANIFEST-000005 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.merge_operator: 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_filter: None 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557e7a0e4a20) 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: cache_index_and_filter_blocks: 1 2024-09-17T08:32:05.882 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: pin_top_level_index_and_filter: 1 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: index_type: 0 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: data_block_index_type: 0 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: index_shortening: 1 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: checksum: 4 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: no_block_cache: 0 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_cache: 0x557e7a0d9350 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_cache_name: BinnedLRUCache 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_cache_options: 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: capacity : 536870912 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: num_shard_bits : 4 2024-09-17T08:32:05.883 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: strict_capacity_limit : 0 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: high_pri_pool_ratio: 0.000 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_cache_compressed: (nil) 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: persistent_cache: (nil) 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_size: 4096 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_size_deviation: 10 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_restart_interval: 16 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: index_block_restart_interval: 1 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: metadata_block_size: 4096 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: partition_filters: 0 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: use_delta_encoding: 1 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: filter_policy: bloomfilter 2024-09-17T08:32:05.884 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: whole_key_filtering: 1 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: verify_compression: 0 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: read_amp_bytes_per_bit: 0 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: format_version: 5 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: enable_index_compression: 1 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: block_align: 0 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: max_auto_readahead_size: 262144 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: prepopulate_block_cache: 0 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: initial_auto_readahead_size: 8192 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression: NoCompression 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T08:32:05.885 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.num_levels: 7 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T08:32:05.886 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T08:32:05.887 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T08:32:05.888 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T08:32:05.889 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.inplace_update_support: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.bloom_locality: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.max_successive_merges: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T08:32:05.890 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.ttl: 2592000 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enable_blob_files: false 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.min_blob_size: 0 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T08:32:05.891 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi077/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: cb72bcfc-06b7-47b8-ba32-df3f37e41fa6 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561925655883, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561925656431, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726561925, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "cb72bcfc-06b7-47b8-ba32-df3f37e41fa6", "db_session_id": "CRR07BH44XK1BEOM1LNO", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726561925656558, "job": 1, "event": "recovery_finished"} 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi077/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x557e7a104e00 2024-09-17T08:32:05.892 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: DB pointer 0x557e7a1f8000 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: ** DB Stats ** 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.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-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.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-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: ** Compaction Stats [default] ** 2024-09-17T08:32:05.893 INFO:journalctl@ceph.mon.smithi077.smithi077.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-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.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 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: ** Compaction Stats [default] ** 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.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-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.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 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T08:32:05.894 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Cumulative compaction: 0.00 GB write, 0.44 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Interval compaction: 0.00 GB write, 0.44 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.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-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Block cache BinnedLRUCache@0x557e7a0d9350#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T08:32:05.895 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077 does not exist in monmap, will attempt to join an existing cluster 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: using public_addr v2:172.21.15.77:0/0 -> [v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0] 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: starting mon.smithi077 rank -1 at public addrs [v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0] at bind addrs [v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi077 fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(???) e0 preinit fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).mds e1 new map 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).mds e1 print_map 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: e1 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.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} 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: legacy client fscid: -1 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout: No filesystems configured 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T08:32:05.896 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/1313268825' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.897 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: Deploying daemon mon.smithi077 on smithi077 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:05.898 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:05 smithi077 ceph-mon[35734]: mon.smithi077@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-17T08:32:06.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:06 smithi077 bash[35635]: b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e 2024-09-17T08:32:06.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:06 smithi077 systemd[1]: Started Ceph mon.smithi077 for d6ef9a88-74ce-11ef-bceb-c7b262605968. 2024-09-17T08:32:07.322 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T08:32:07.322 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T08:32:07.528 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi077/config 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: mon.smithi062 calling monitor election 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi077.hztgqn/crt"}]: dispatch 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: mon.smithi077 calling monitor election 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: mon.smithi062 is new leader, mons smithi062,smithi077 in quorum (ranks 0,1) 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: monmap e2: 2 mons at {smithi062=[v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0],smithi077=[v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: fsmap 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: mgrmap e17: smithi062.kronsk(active, since 36s) 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: overall HEALTH_OK 2024-09-17T08:32:11.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: Standby manager daemon smithi077.hztgqn started 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi077.hztgqn/key"}]: dispatch 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.052 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:10 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:32:11.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: mon.smithi062 calling monitor election 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi077.hztgqn/crt"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: mon.smithi077 calling monitor election 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: mon.smithi062 is new leader, mons smithi062,smithi077 in quorum (ranks 0,1) 2024-09-17T08:32:11.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: monmap e2: 2 mons at {smithi062=[v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0],smithi077=[v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: fsmap 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: mgrmap e17: smithi062.kronsk(active, since 36s) 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: overall HEALTH_OK 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: Standby manager daemon smithi077.hztgqn started 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi077.hztgqn/key"}]: dispatch 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.? 172.21.15.77:0/3344947928' entity='mgr.smithi077.hztgqn' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:11.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:10 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:12.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:11 smithi062 ceph-mon[25840]: mgrmap e18: smithi062.kronsk(active, since 36s), standbys: smithi077.hztgqn 2024-09-17T08:32:12.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:11 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi077.hztgqn", "id": "smithi077.hztgqn"}]: dispatch 2024-09-17T08:32:12.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:11 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:32:12.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:11 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:12.055 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:11 smithi077 ceph-mon[35734]: mgrmap e18: smithi062.kronsk(active, since 36s), standbys: smithi077.hztgqn 2024-09-17T08:32:12.055 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:11 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr metadata", "who": "smithi077.hztgqn", "id": "smithi077.hztgqn"}]: dispatch 2024-09-17T08:32:12.055 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:11 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:32:12.055 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:11 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:32:12.199 INFO:teuthology.orchestra.run.smithi077.stdout: 2024-09-17T08:32:12.199 INFO:teuthology.orchestra.run.smithi077.stdout:{"epoch":2,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","modified":"2024-09-17T08:32:05.686090Z","created":"2024-09-17T08:29:22.122484Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi062","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:3300","nonce":0},{"type":"v1","addr":"172.21.15.62:6789","nonce":0}]},"addr":"172.21.15.62:6789/0","public_addr":"172.21.15.62:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi077","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:3300","nonce":0},{"type":"v1","addr":"172.21.15.77:6789","nonce":0}]},"addr":"172.21.15.77:6789/0","public_addr":"172.21.15.77:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T08:32:12.200 INFO:teuthology.orchestra.run.smithi077.stderr:dumped monmap epoch 2 2024-09-17T08:32:12.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:12.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/4222462682' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:32:12.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:12.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:12.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:12.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:32:13.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:13.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/4222462682' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T08:32:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:32:13.199 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T08:32:13.200 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: Updating smithi062:/etc/ceph/ceph.conf 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: Updating smithi077:/etc/ceph/ceph.conf 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: Updating smithi077:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: Updating smithi062:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:13.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:32:13.801 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:13 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:14.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: Updating smithi062:/etc/ceph/ceph.conf 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: Updating smithi077:/etc/ceph/ceph.conf 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: Updating smithi077:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: Updating smithi062:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:32:14.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:13 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:14.407 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:14.955 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: Reconfiguring mon.smithi062 (unknown last config time)... 2024-09-17T08:32:14.955 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: Reconfiguring daemon mon.smithi062 on smithi062 2024-09-17T08:32:14.955 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:14.955 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.956 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.956 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:14.956 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi062.kronsk", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:32:14.956 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:32:14.956 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:15.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: Reconfiguring mon.smithi062 (unknown last config time)... 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: Reconfiguring daemon mon.smithi062 on smithi062 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi062.kronsk", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:32:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:16.119 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:15 smithi062 ceph-mon[25840]: Reconfiguring mgr.smithi062.kronsk (unknown last config time)... 2024-09-17T08:32:16.119 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:15 smithi062 ceph-mon[25840]: Reconfiguring daemon mgr.smithi062.kronsk on smithi062 2024-09-17T08:32:16.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:15 smithi077 ceph-mon[35734]: Reconfiguring mgr.smithi062.kronsk (unknown last config time)... 2024-09-17T08:32:16.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:15 smithi077 ceph-mon[35734]: Reconfiguring daemon mgr.smithi062.kronsk on smithi062 2024-09-17T08:32:16.489 INFO:teuthology.orchestra.run.smithi062.stdout:# minimal ceph.conf for d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:32:16.489 INFO:teuthology.orchestra.run.smithi062.stdout:[global] 2024-09-17T08:32:16.489 INFO:teuthology.orchestra.run.smithi062.stdout: fsid = d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:32:16.489 INFO:teuthology.orchestra.run.smithi062.stdout: mon_host = [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] [v2:172.21.15.77:3300/0,v1:172.21.15.77:6789/0] 2024-09-17T08:32:17.083 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:16 smithi062 ceph-mon[25840]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:17.084 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:16 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/232277276' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:17.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:16 smithi077 ceph-mon[35734]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:17.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:16 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/232277276' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:17.763 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T08:32:17.764 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:32:17.764 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T08:32:17.793 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:32:17.794 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:32:17.860 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:32:17.860 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T08:32:17.893 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:32:17.893 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T08:32:17.961 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T08:32:17.961 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:32:17.961 DEBUG:teuthology.orchestra.run.smithi062:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:32:17.979 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T08:32:17.979 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/nvme4n1 2024-09-17T08:32:18.036 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/nvme4n1 2024-09-17T08:32:18.037 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.037 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:30:43.112837854 +0000 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:37.098863082 +0000 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:37.098863082 +0000 2024-09-17T08:32:18.038 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:37.093863162 +0000 2024-09-17T08:32:18.039 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T08:32:18.103 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:32:18.103 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:32:18.103 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000205397 s, 2.5 MB/s 2024-09-17T08:32:18.104 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T08:32:18.162 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/nvme3n1 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/nvme3n1 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:30:43.101838031 +0000 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:37.004864594 +0000 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:37.004864594 +0000 2024-09-17T08:32:18.219 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:36.999864675 +0000 2024-09-17T08:32:18.220 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T08:32:18.283 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:32:18.284 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:32:18.284 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000231083 s, 2.2 MB/s 2024-09-17T08:32:18.285 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T08:32:18.341 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/nvme2n1 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/nvme2n1 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 1015 Links: 1 Device type: 103,4 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:30:43.089838223 +0000 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:36.839867249 +0000 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:36.839867249 +0000 2024-09-17T08:32:18.398 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:36.834867330 +0000 2024-09-17T08:32:18.399 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: Reconfiguring ceph-exporter.smithi062 (monmap changed)... 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi062", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: Reconfiguring daemon ceph-exporter.smithi062 on smithi062 2024-09-17T08:32:18.460 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:18 smithi062 ceph-mon[25840]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:18.462 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:32:18.462 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:32:18.462 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.00021859 s, 2.3 MB/s 2024-09-17T08:32:18.464 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T08:32:18.520 DEBUG:teuthology.orchestra.run.smithi062:> stat /dev/nvme1n1 2024-09-17T08:32:18.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:18.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:18.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: Reconfiguring ceph-exporter.smithi062 (monmap changed)... 2024-09-17T08:32:18.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi062", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:32:18.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:18.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: Reconfiguring daemon ceph-exporter.smithi062 on smithi062 2024-09-17T08:32:18.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:18 smithi077 ceph-mon[35734]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout: File: /dev/nvme1n1 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Access: 2024-09-17 08:30:43.079838384 +0000 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Modify: 2024-09-17 08:28:36.700869486 +0000 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout:Change: 2024-09-17 08:28:36.700869486 +0000 2024-09-17T08:32:18.577 INFO:teuthology.orchestra.run.smithi062.stdout: Birth: 2024-09-17 08:28:36.695869567 +0000 2024-09-17T08:32:18.578 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T08:32:18.642 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records in 2024-09-17T08:32:18.642 INFO:teuthology.orchestra.run.smithi062.stderr:1+0 records out 2024-09-17T08:32:18.642 INFO:teuthology.orchestra.run.smithi062.stderr:512 bytes copied, 0.000282352 s, 1.8 MB/s 2024-09-17T08:32:18.643 DEBUG:teuthology.orchestra.run.smithi062:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T08:32:18.701 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:32:18.701 DEBUG:teuthology.orchestra.run.smithi077:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T08:32:18.721 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T08:32:18.721 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/nvme4n1 2024-09-17T08:32:18.780 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/nvme4n1 2024-09-17T08:32:18.780 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.780 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-17T08:32:18.780 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.780 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.781 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:31:37.412136835 +0000 2024-09-17T08:32:18.781 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:38.705076244 +0000 2024-09-17T08:32:18.781 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:38.705076244 +0000 2024-09-17T08:32:18.781 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:38.700076353 +0000 2024-09-17T08:32:18.781 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T08:32:18.849 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:32:18.849 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:32:18.849 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000282714 s, 1.8 MB/s 2024-09-17T08:32:18.851 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T08:32:18.910 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/nvme3n1 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/nvme3n1 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:31:37.402137052 +0000 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:38.567079270 +0000 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:38.567079270 +0000 2024-09-17T08:32:18.969 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:38.563079358 +0000 2024-09-17T08:32:18.969 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T08:32:19.035 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:32:19.036 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:32:19.036 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000272162 s, 1.9 MB/s 2024-09-17T08:32:19.037 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T08:32:19.095 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/nvme2n1 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/nvme2n1 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:31:37.391137291 +0000 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:38.423082428 +0000 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:38.423082428 +0000 2024-09-17T08:32:19.153 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:38.418082538 +0000 2024-09-17T08:32:19.154 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T08:32:19.218 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:32:19.218 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:32:19.218 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.000333162 s, 1.5 MB/s 2024-09-17T08:32:19.219 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T08:32:19.277 DEBUG:teuthology.orchestra.run.smithi077:> stat /dev/nvme1n1 2024-09-17T08:32:19.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:19.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:19.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:19.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi062", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:32:19.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout: File: /dev/nvme1n1 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Access: 2024-09-17 08:31:37.380137530 +0000 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Modify: 2024-09-17 08:28:38.281085542 +0000 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout:Change: 2024-09-17 08:28:38.281085542 +0000 2024-09-17T08:32:19.333 INFO:teuthology.orchestra.run.smithi077.stdout: Birth: 2024-09-17 08:28:38.276085652 +0000 2024-09-17T08:32:19.334 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T08:32:19.397 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records in 2024-09-17T08:32:19.397 INFO:teuthology.orchestra.run.smithi077.stderr:1+0 records out 2024-09-17T08:32:19.397 INFO:teuthology.orchestra.run.smithi077.stderr:512 bytes copied, 0.00021417 s, 2.4 MB/s 2024-09-17T08:32:19.398 DEBUG:teuthology.orchestra.run.smithi077:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T08:32:19.455 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-17T08:32:19.517 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:19.518 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:19.518 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:19.518 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi062", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:32:19.518 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:19.682 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi077/config 2024-09-17T08:32:20.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:20 smithi062 ceph-mon[25840]: Reconfiguring crash.smithi062 (monmap changed)... 2024-09-17T08:32:20.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:20 smithi062 ceph-mon[25840]: Reconfiguring daemon crash.smithi062 on smithi062 2024-09-17T08:32:20.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:20 smithi062 ceph-mon[25840]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:20.485 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:20 smithi077 ceph-mon[35734]: Reconfiguring crash.smithi062 (monmap changed)... 2024-09-17T08:32:20.485 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:20 smithi077 ceph-mon[35734]: Reconfiguring daemon crash.smithi062 on smithi062 2024-09-17T08:32:20.485 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:20 smithi077 ceph-mon[35734]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:21.417 INFO:teuthology.orchestra.run.smithi077.stdout:Scheduled osd.all-available-devices update... 2024-09-17T08:32:21.700 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:21.700 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:21.700 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:21 smithi077 ceph-mon[35734]: Reconfiguring alertmanager.smithi062 (dependencies changed)... 2024-09-17T08:32:21.700 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:21 smithi077 ceph-mon[35734]: Reconfiguring daemon alertmanager.smithi062 on smithi062 2024-09-17T08:32:21.750 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:21.750 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:21.750 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:21 smithi062 ceph-mon[25840]: Reconfiguring alertmanager.smithi062 (dependencies changed)... 2024-09-17T08:32:21.750 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:21 smithi062 ceph-mon[25840]: Reconfiguring daemon alertmanager.smithi062 on smithi062 2024-09-17T08:32:21.913 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-17T08:32:21.913 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:22.631 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:22.752 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:32:22.752 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: Marking host: smithi062 for OSDSpec preview refresh. 2024-09-17T08:32:22.753 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: Marking host: smithi077 for OSDSpec preview refresh. 2024-09-17T08:32:22.753 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: Saving service osd.all-available-devices spec with placement * 2024-09-17T08:32:22.753 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:22.753 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:22 smithi062 ceph-mon[25840]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:22.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:32:22.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: Marking host: smithi062 for OSDSpec preview refresh. 2024-09-17T08:32:22.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: Marking host: smithi077 for OSDSpec preview refresh. 2024-09-17T08:32:22.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: Saving service osd.all-available-devices spec with placement * 2024-09-17T08:32:22.812 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:22.812 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:22 smithi077 ceph-mon[35734]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:24.727 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:24.978 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:24 smithi062 ceph-mon[25840]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:24.978 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:24 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1185869587' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:25.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:24 smithi077 ceph-mon[35734]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:25.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:24 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1185869587' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:26.013 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:27.015 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:27.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:26 smithi062 ceph-mon[25840]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:27.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:27.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:26 smithi077 ceph-mon[35734]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:27.892 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:28.014 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:27 smithi062 ceph-mon[25840]: Reconfiguring grafana.smithi062 (dependencies changed)... 2024-09-17T08:32:28.014 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:27 smithi062 ceph-mon[25840]: Reconfiguring daemon grafana.smithi062 on smithi062 2024-09-17T08:32:28.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:27 smithi077 ceph-mon[35734]: Reconfiguring grafana.smithi062 (dependencies changed)... 2024-09-17T08:32:28.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:27 smithi077 ceph-mon[35734]: Reconfiguring daemon grafana.smithi062 on smithi062 2024-09-17T08:32:29.242 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:28 smithi062 ceph-mon[25840]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:28 smithi077 ceph-mon[35734]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:30.947 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:30 smithi062 ceph-mon[25840]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:30.961 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:31.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:30 smithi077 ceph-mon[35734]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:32.062 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:31 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2046609051' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:32.084 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:32.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:31 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2046609051' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:33.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:32 smithi062 ceph-mon[25840]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:33.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:33.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:33.085 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:33.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:32 smithi077 ceph-mon[35734]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:33.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:33.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:34.117 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:34.157 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:33 smithi077 ceph-mon[35734]: Reconfiguring prometheus.smithi062 (dependencies changed)... 2024-09-17T08:32:34.157 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:34.240 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:33 smithi062 ceph-mon[25840]: Reconfiguring prometheus.smithi062 (dependencies changed)... 2024-09-17T08:32:34.240 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:35.009 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:34 smithi062 ceph-mon[25840]: Reconfiguring daemon prometheus.smithi062 on smithi062 2024-09-17T08:32:35.009 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:34 smithi062 ceph-mon[25840]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:34 smithi077 ceph-mon[35734]: Reconfiguring daemon prometheus.smithi062 on smithi062 2024-09-17T08:32:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:34 smithi077 ceph-mon[35734]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:37.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:36 smithi062 ceph-mon[25840]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:37.096 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:37.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:36 smithi077 ceph-mon[35734]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:38.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:37 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1690593414' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:38.096 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:38.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:37 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1690593414' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:39.098 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:39.245 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:38 smithi062 ceph-mon[25840]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:39.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:38 smithi077 ceph-mon[35734]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:39.586 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:40.746 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:40.746 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:40.747 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: Reconfiguring ceph-exporter.smithi077 (monmap changed)... 2024-09-17T08:32:40.747 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi077", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:32:40.747 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:40.747 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: Reconfiguring daemon ceph-exporter.smithi077 on smithi077 2024-09-17T08:32:40.747 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:40 smithi062 ceph-mon[25840]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:40.946 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:40.946 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:40.946 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: Reconfiguring ceph-exporter.smithi077 (monmap changed)... 2024-09-17T08:32:40.947 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi077", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T08:32:40.947 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:40.947 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: Reconfiguring daemon ceph-exporter.smithi077 on smithi077 2024-09-17T08:32:40.947 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:40 smithi077 ceph-mon[35734]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:41.405 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:41.998 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:42.229 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:42.229 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:42.229 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: Reconfiguring crash.smithi077 (monmap changed)... 2024-09-17T08:32:42.229 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi077", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:32:42.229 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:42.230 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: Reconfiguring daemon crash.smithi077 on smithi077 2024-09-17T08:32:42.230 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/181074319' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:42.230 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:42 smithi077 ceph-mon[35734]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:42.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: Reconfiguring crash.smithi077 (monmap changed)... 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi077", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: Reconfiguring daemon crash.smithi077 on smithi077 2024-09-17T08:32:42.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/181074319' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:42.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:42 smithi062 ceph-mon[25840]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:42.999 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:43.216 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:43.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: Reconfiguring mgr.smithi077.hztgqn (monmap changed)... 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi077.hztgqn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:43.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:43 smithi062 ceph-mon[25840]: Reconfiguring daemon mgr.smithi077.hztgqn on smithi077 2024-09-17T08:32:43.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:43.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:43.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: Reconfiguring mgr.smithi077.hztgqn (monmap changed)... 2024-09-17T08:32:43.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi077.hztgqn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T08:32:43.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T08:32:43.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:43.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:43 smithi077 ceph-mon[35734]: Reconfiguring daemon mgr.smithi077.hztgqn on smithi077 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: Reconfiguring mon.smithi077 (monmap changed)... 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: Reconfiguring daemon mon.smithi077 on smithi077 2024-09-17T08:32:44.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:44 smithi062 ceph-mon[25840]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: Reconfiguring mon.smithi077 (monmap changed)... 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: Reconfiguring daemon mon.smithi077 on smithi077 2024-09-17T08:32:44.640 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:44 smithi077 ceph-mon[35734]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:45.049 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:45.645 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:45.888 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi062.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi062.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi062.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi062.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:45.889 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi062.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi062.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:32:45.890 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:45 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3247436387' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi062.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T08:32:46.020 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi062.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi062.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi062.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi062.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi062.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:32:46.021 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:45 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3247436387' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:46.647 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:46.965 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:46 smithi062 ceph-mon[25840]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:46.965 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:46.965 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:47.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:46 smithi077 ceph-mon[35734]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:47.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:46 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:47.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:46 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:47.218 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:48.019 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:47 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:48.019 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:47 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:48.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:47 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:48.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:47 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:48.872 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:48 smithi062 ceph-mon[25840]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:49.138 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:49.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:48 smithi077 ceph-mon[35734]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:50.146 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:50.146 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:49 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2422679057' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:50.168 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:50.212 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:32:50.212 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:49 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2422679057' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:51.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:50 smithi077 ceph-mon[35734]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:51.169 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:51.193 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:50 smithi062 ceph-mon[25840]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:51.554 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:32:52.764 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.765 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:32:52.765 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:32:52.765 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:52.765 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:32:52.765 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:52.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:32:52.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:32:53.666 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:53.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:53 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1754090165' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:54.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:53 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1754090165' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:54.396 INFO:teuthology.orchestra.run.smithi062.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-17T08:32:55.029 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:55.029 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/3471082832' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]: dispatch 2024-09-17T08:32:55.029 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]: dispatch 2024-09-17T08:32:55.029 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]': finished 2024-09-17T08:32:55.029 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T08:32:55.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:55.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:55.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/3471082832' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]: dispatch 2024-09-17T08:32:55.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]: dispatch 2024-09-17T08:32:55.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28693700-2a61-4f99-9a4f-8bf03e7807c9"}]': finished 2024-09-17T08:32:55.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T08:32:55.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:55.397 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:55.604 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:55.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:55 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/1894471432' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:32:55.982 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:55 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1894471432' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/755883599' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3ae04e14-594b-409d-be01-f951a1c68415"}]: dispatch 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/755883599' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3ae04e14-594b-409d-be01-f951a1c68415"}]': finished 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:57.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:32:57.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:57.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/755883599' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3ae04e14-594b-409d-be01-f951a1c68415"}]: dispatch 2024-09-17T08:32:57.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/755883599' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3ae04e14-594b-409d-be01-f951a1c68415"}]': finished 2024-09-17T08:32:57.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T08:32:57.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:57.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:32:57.605 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:32:57.922 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:57 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1921220582' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:32:57.922 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:57 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/4201700562' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:58.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:57 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1921220582' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:32:58.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:57 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/4201700562' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:32:58.247 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726561976,"num_remapped_pgs":0} 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1581162944' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]: dispatch 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]: dispatch 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]': finished 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:32:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:32:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:32:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/1581162944' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]: dispatch 2024-09-17T08:32:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]: dispatch 2024-09-17T08:32:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cbc91ed0-0a46-4789-9b7d-731f3ae8835a"}]': finished 2024-09-17T08:32:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T08:32:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:32:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:32:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:32:59.249 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:32:59.454 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:32:59.860 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:32:59 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2307237966' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:00.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:32:59 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/2307237966' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:01.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:01.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3712442892' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32a87789-8ccb-47db-bc45-cd7de2c1aed3"}]: dispatch 2024-09-17T08:33:01.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3712442892' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "32a87789-8ccb-47db-bc45-cd7de2c1aed3"}]': finished 2024-09-17T08:33:01.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T08:33:01.030 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:01.031 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:01.031 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:01.031 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:00 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:01.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:01.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3712442892' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "32a87789-8ccb-47db-bc45-cd7de2c1aed3"}]: dispatch 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3712442892' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "32a87789-8ccb-47db-bc45-cd7de2c1aed3"}]': finished 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:01.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:00 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:01.453 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:01.998 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3798023238' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3939842128' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/3444396391' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]': finished 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:01.999 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:01 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:02.019 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726561980,"num_remapped_pgs":0} 2024-09-17T08:33:02.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3798023238' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3939842128' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/3444396391' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2ec20c57-7a2c-4d01-a6f5-89afd5feb267"}]': finished 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:02.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:01 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:02.902 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:02 smithi077 ceph-mon[35734]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:03.020 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:03.045 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:02 smithi062 ceph-mon[25840]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:03.224 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:03.859 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:03 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/1954410787' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:04.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:03 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/1954410787' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:05.035 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:05.035 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/252234083' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "69bd9a9b-58ff-427f-81fe-40be94877fe0"}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/252234083' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "69bd9a9b-58ff-427f-81fe-40be94877fe0"}]': finished 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:05.036 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:05.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/252234083' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "69bd9a9b-58ff-427f-81fe-40be94877fe0"}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/252234083' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "69bd9a9b-58ff-427f-81fe-40be94877fe0"}]': finished 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:05.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:05.143 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:05.780 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726561984,"num_remapped_pgs":0} 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1625871578' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/3406646115' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]': finished 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:06.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:06.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:06.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:06.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:05 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1625871578' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/3406646115' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3bc229c8-f446-4bcb-832b-fbc93fc60dd3"}]': finished 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:06.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:06.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:05 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:06.781 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:06.992 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:07.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:06 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/79970160' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:07.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:06 smithi062 ceph-mon[25840]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:07.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:06 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/725966428' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:07.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:06 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/79970160' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:07.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:06 smithi077 ceph-mon[35734]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:07.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:06 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/725966428' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:08.726 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3495518303' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f1b7121e-a0c4-41c8-abe5-ab55c6353984"}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3495518303' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f1b7121e-a0c4-41c8-abe5-ab55c6353984"}]': finished 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:09.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:09.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:09.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:09.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:08 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1913255866' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3495518303' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f1b7121e-a0c4-41c8-abe5-ab55c6353984"}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3495518303' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f1b7121e-a0c4-41c8-abe5-ab55c6353984"}]': finished 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:09.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:09.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:09.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:09.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:08 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1913255866' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:09.523 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:09.972 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:09 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/713216586' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:10.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:09 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/713216586' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T08:33:10.524 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:10.729 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:11.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:10 smithi077 ceph-mon[35734]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:11.138 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:10 smithi062 ceph-mon[25840]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:12.987 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:12 smithi077 ceph-mon[35734]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:12.987 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:33:12.987 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:13.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:12 smithi062 ceph-mon[25840]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T08:33:13.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:13.152 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:13.826 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:14.080 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:13 smithi062 ceph-mon[25840]: Deploying daemon osd.0 on smithi077 2024-09-17T08:33:14.080 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:13 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/888782819' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:14.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:13 smithi077 ceph-mon[35734]: Deploying daemon osd.0 on smithi077 2024-09-17T08:33:14.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:13 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/888782819' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:14.828 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:15.021 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:14 smithi062 ceph-mon[25840]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:15.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:14 smithi077 ceph-mon[35734]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:15.240 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:17.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:16 smithi077 ceph-mon[35734]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:17.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:33:17.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:17.131 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:16 smithi062 ceph-mon[25840]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:17.131 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T08:33:17.131 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:17.811 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: Deploying daemon osd.1 on smithi062 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:18.174 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:17 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2762982486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: Deploying daemon osd.1 on smithi062 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:18.202 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:17 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2762982486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:18.566 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:19.203 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:18 smithi062 ceph-mon[25840]: Deploying daemon osd.2 on smithi077 2024-09-17T08:33:19.203 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:18 smithi062 ceph-mon[25840]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:19.203 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:19.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:18 smithi077 ceph-mon[35734]: Deploying daemon osd.2 on smithi077 2024-09-17T08:33:19.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:18 smithi077 ceph-mon[35734]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:19.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:19.568 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:20.096 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:21.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:20 smithi062 ceph-mon[25840]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:21.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:20 smithi062 ceph-mon[25840]: from='osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:33:21.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:20 smithi062 ceph-mon[25840]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:33:21.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:20 smithi077 ceph-mon[35734]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:21.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:20 smithi077 ceph-mon[35734]: from='osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:33:21.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:20 smithi077 ceph-mon[35734]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:22.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:22.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:22.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:21 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:22.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:22.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:21 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:22.671 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:23.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:23.301 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:22 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3518057722' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:23.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:23.303 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T08:33:23.303 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:23.303 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:22 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3518057722' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:23.442 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: Deploying daemon osd.4 on smithi077 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565] boot 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:24.166 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:24.167 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:24.167 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: Deploying daemon osd.4 on smithi077 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: osd.0 [v2:172.21.15.77:6800/3881713565,v1:172.21.15.77:6801/3881713565] boot 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T08:33:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:24.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:24.443 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:24.763 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:25.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:25.287 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:25.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:25.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:25.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:26.250 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:33:26.250 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:33:26.250 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:26.250 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:26.250 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:33:26.251 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:25 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:26.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:33:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T08:33:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T08:33:26.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:25 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: Deploying daemon osd.3 on smithi062 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:27.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:27.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:27.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:27.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:27.051 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:26 smithi062 ceph-mon[25840]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:27.151 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:27.220 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: Deploying daemon osd.3 on smithi062 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:27.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:27.222 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:26 smithi077 ceph-mon[35734]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:27.904 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":19,"num_osds":8,"num_up_osds":1,"osd_up_since":1726562002,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:28.245 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:28.245 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T08:33:28.245 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2496589961' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: Deploying daemon osd.6 on smithi077 2024-09-17T08:33:28.246 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:27 smithi077 ceph-mon[35734]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2496589961' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:28.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:28.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:28.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T08:33:28.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:28.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: Deploying daemon osd.6 on smithi077 2024-09-17T08:33:28.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:27 smithi062 ceph-mon[25840]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T08:33:28.905 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:28.980 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:28.980 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:28.980 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102] boot 2024-09-17T08:33:28.980 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T08:33:28.980 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:28.981 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:28 smithi062 ceph-mon[25840]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T08:33:29.187 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:29.187 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:29.187 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: osd.2 [v2:172.21.15.77:6808/3345674102,v1:172.21.15.77:6809/3345674102] boot 2024-09-17T08:33:29.187 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T08:33:29.187 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:29.188 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:28 smithi077 ceph-mon[35734]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T08:33:29.301 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:30.180 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:30.181 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:29 smithi062 ceph-mon[25840]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:30.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:30.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:29 smithi077 ceph-mon[35734]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T08:33:31.219 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:33:31.220 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:30 smithi062 ceph-mon[25840]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:33:31.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:33:31.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:30 smithi077 ceph-mon[35734]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T08:33:31.889 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695] boot 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:32.339 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:32.340 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:32.340 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:32 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1103647473' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: osd.1 [v2:172.21.15.62:6802/3035410695,v1:172.21.15.62:6803/3035410695] boot 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T08:33:32.496 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:32.497 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:32 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1103647473' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:32.843 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":23,"num_osds":8,"num_up_osds":3,"osd_up_since":1726562010,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:33.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: pgmap v70: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:33.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:33.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:33:33.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:33.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:33.706 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: pgmap v70: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:33.707 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:33.844 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:34.065 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:34.456 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:34.456 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:34.456 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:33:34.456 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297] boot 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: osdmap e25: 8 total, 4 up, 8 in 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:33:34.457 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:34.550 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:34.550 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:34.550 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: osd.4 [v2:172.21.15.77:6816/3662954297,v1:172.21.15.77:6817/3662954297] boot 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: osdmap e25: 8 total, 4 up, 8 in 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T08:33:34.551 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: Deploying daemon osd.5 on smithi062 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: osdmap e26: 8 total, 4 up, 8 in 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:35.503 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: Deploying daemon osd.5 on smithi062 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: osdmap e26: 8 total, 4 up, 8 in 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:35.537 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.343 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:36.729 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.729 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: pgmap v75: 1 pgs: 1 creating+activating; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2581762146' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:36.730 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:36 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.827 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.827 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: pgmap v75: 1 pgs: 1 creating+activating; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2581762146' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:36.828 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:36 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:37.041 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":26,"num_osds":8,"num_up_osds":4,"osd_up_since":1726562013,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:37.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57176]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:33:37.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57176]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:33:37.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57176]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:33:37.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57176]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:33:37.951 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57208]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:33:37.951 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57208]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57208]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 sudo[57208]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: osdmap e27: 8 total, 4 up, 8 in 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: mgrmap e19: smithi062.kronsk(active, since 2m), standbys: smithi077.hztgqn 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:37.952 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:37 smithi062 ceph-mon[25840]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:33:38.042 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:38.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: osdmap e27: 8 total, 4 up, 8 in 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]: dispatch 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: mgrmap e19: smithi062.kronsk(active, since 2m), standbys: smithi077.hztgqn 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:37 smithi077 ceph-mon[35734]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:33:38.732 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: osdmap e28: 8 total, 4 up, 8 in 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:39.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:38 smithi062 ceph-mon[25840]: pgmap v78: 1 pgs: 1 creating+activating; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:39.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:33:39.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi077", "root=default"]}]': finished 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: osdmap e28: 8 total, 4 up, 8 in 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:38 smithi077 ceph-mon[35734]: pgmap v78: 1 pgs: 1 creating+activating; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611] boot 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:40.022 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:40.023 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:39 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:40.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: osd.6 [v2:172.21.15.77:6824/2371330611,v1:172.21.15.77:6825/2371330611] boot 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:40.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:40.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T08:33:40.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:40.062 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:39 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:40.898 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:40.898 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:40.898 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: pgmap v81: 1 pgs: 1 remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612] boot 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: osdmap e31: 8 total, 6 up, 8 in 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:40.899 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: pgmap v81: 1 pgs: 1 remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: osd.3 [v2:172.21.15.62:6810/1293380612,v1:172.21.15.62:6811/1293380612] boot 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: osdmap e31: 8 total, 6 up, 8 in 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:41.628 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":31,"num_osds":8,"num_up_osds":6,"osd_up_since":1726562020,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":1} 2024-09-17T08:33:41.976 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:41 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1709256391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:41.976 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:41 smithi062 ceph-mon[25840]: osdmap e32: 8 total, 6 up, 8 in 2024-09-17T08:33:41.976 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:41 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:41.976 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:41 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:42.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:41 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1709256391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:42.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:41 smithi077 ceph-mon[35734]: osdmap e32: 8 total, 6 up, 8 in 2024-09-17T08:33:42.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:41 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:42.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:41 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:42.630 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:42.963 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:42 smithi062 ceph-mon[25840]: pgmap v84: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:42.963 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:42 smithi062 ceph-mon[25840]: osdmap e33: 8 total, 6 up, 8 in 2024-09-17T08:33:42.964 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:42.964 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:43.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:42 smithi077 ceph-mon[35734]: pgmap v84: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:42 smithi077 ceph-mon[35734]: osdmap e33: 8 total, 6 up, 8 in 2024-09-17T08:33:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:43.073 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:44.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:44.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:44.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T08:33:44.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:44.288 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: Deploying daemon osd.7 on smithi062 2024-09-17T08:33:44.289 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T08:33:44.289 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:44.289 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:44.289 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:44 smithi062 ceph-mon[25840]: pgmap v87: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T08:33:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:33:44.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: Deploying daemon osd.7 on smithi062 2024-09-17T08:33:44.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T08:33:44.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:44.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:44.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:44 smithi077 ceph-mon[35734]: pgmap v87: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:45.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:45 smithi062 ceph-mon[25840]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T08:33:45.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:45.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:45 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:45.436 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:45.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:45 smithi077 ceph-mon[35734]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T08:33:45.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:45.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:45 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:46.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:46 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3942931404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:46.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:46 smithi062 ceph-mon[25840]: pgmap v89: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:46.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:46 smithi062 ceph-mon[25840]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:33:46.321 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":35,"num_osds":8,"num_up_osds":6,"osd_up_since":1726562020,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:46.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:46 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3942931404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:46.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:46 smithi077 ceph-mon[35734]: pgmap v89: 1 pgs: 1 remapped; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-09-17T08:33:46.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:46 smithi077 ceph-mon[35734]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T08:33:47.322 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:47.465 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:47 smithi062 ceph-mon[25840]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T08:33:47.466 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:47 smithi062 ceph-mon[25840]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T08:33:47.466 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:47 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:47.466 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:47 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:47.466 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:47 smithi062 ceph-mon[25840]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:47.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:47 smithi077 ceph-mon[35734]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T08:33:47.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:47 smithi077 ceph-mon[35734]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T08:33:47.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:47 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:47.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:47 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:47.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:47 smithi077 ceph-mon[35734]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:47.571 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:48.340 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:48.340 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: osdmap e37: 8 total, 6 up, 8 in 2024-09-17T08:33:48.340 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:48.340 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:48.341 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:48.341 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' 2024-09-17T08:33:48.341 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:48 smithi062 ceph-mon[25840]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 123 KiB/s, 0 objects/s recovering 2024-09-17T08:33:48.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: osdmap e37: 8 total, 6 up, 8 in 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: from='osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898]' entity='osd.5' 2024-09-17T08:33:48.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:48 smithi077 ceph-mon[35734]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 123 KiB/s, 0 objects/s recovering 2024-09-17T08:33:49.371 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47425]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T08:33:49.371 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47425]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:33:49.372 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47425]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:33:49.372 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47425]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898] boot 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:49.778 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:49.779 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:33:49.779 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:49 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:33:49.795 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:49.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47428]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T08:33:49.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47428]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47428]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 sudo[47428]: pam_unix(sudo:session): session closed for user root 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: osd.5 [v2:172.21.15.62:6818/852315898,v1:172.21.15.62:6819/852315898] boot 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi062"}]: dispatch 2024-09-17T08:33:49.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:49 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "mon metadata", "id": "smithi077"}]: dispatch 2024-09-17T08:33:50.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:33:50.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:33:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1471434070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-17T08:33:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T08:33:50.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:50.666 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1726562028,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:50.720 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1471434070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 102 KiB/s, 0 objects/s recovering 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T08:33:50.721 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:51.667 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:51.914 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:53.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:52 smithi062 ceph-mon[25840]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 4.6 KiB/s rd, 231 KiB/s wr, 14 op/s 2024-09-17T08:33:53.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:53.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:52 smithi077 ceph-mon[35734]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 4.6 KiB/s rd, 231 KiB/s wr, 14 op/s 2024-09-17T08:33:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:54.810 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:55.171 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:54 smithi062 ceph-mon[25840]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 3.9 KiB/s rd, 196 KiB/s wr, 12 op/s 2024-09-17T08:33:55.172 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/4144127798' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:55.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:54 smithi077 ceph-mon[35734]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 3.9 KiB/s rd, 196 KiB/s wr, 12 op/s 2024-09-17T08:33:55.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:54 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/4144127798' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:33:55.562 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":39,"num_osds":8,"num_up_osds":7,"osd_up_since":1726562028,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":0} 2024-09-17T08:33:56.252 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:55 smithi062 ceph-mon[25840]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T08:33:56.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:55 smithi077 ceph-mon[35734]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T08:33:56.563 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T08:33:57.045 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:33:57.164 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 190 MiB used, 626 GiB / 626 GiB avail; 3.2 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-17T08:33:57.164 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T08:33:57.164 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T08:33:57.164 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:57.165 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:57.165 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:57.165 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:57.165 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:56 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:33:57.191 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 190 MiB used, 626 GiB / 626 GiB avail; 3.2 KiB/s rd, 163 KiB/s wr, 10 op/s 2024-09-17T08:33:57.191 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]: dispatch 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:57.192 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:56 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:33:58.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:57 smithi062 ceph-mon[25840]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:58.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:57 smithi062 ceph-mon[25840]: osdmap e41: 8 total, 7 up, 8 in 2024-09-17T08:33:58.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:58.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:58.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:57 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:58.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:57 smithi077 ceph-mon[35734]: from='osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi062", "root=default"]}]': finished 2024-09-17T08:33:58.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:57 smithi077 ceph-mon[35734]: osdmap e41: 8 total, 7 up, 8 in 2024-09-17T08:33:58.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:57 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:58.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:57 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:58.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:57 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:59.196 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: purged_snaps scrub starts 2024-09-17T08:33:59.196 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: purged_snaps scrub ok 2024-09-17T08:33:59.196 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 190 MiB used, 626 GiB / 626 GiB avail; 3.3 KiB/s rd, 164 KiB/s wr, 10 op/s 2024-09-17T08:33:59.197 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668] boot 2024-09-17T08:33:59.197 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T08:33:59.197 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:59.197 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:59.197 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:59.232 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: purged_snaps scrub starts 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: purged_snaps scrub ok 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 190 MiB used, 626 GiB / 626 GiB avail; 3.3 KiB/s rd, 164 KiB/s wr, 10 op/s 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: osd.7 [v2:172.21.15.62:6826/867482668,v1:172.21.15.62:6827/867482668] boot 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:33:59.233 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:00.012 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":43,"num_osds":8,"num_up_osds":8,"osd_up_since":1726562037,"num_in_osds":8,"osd_in_since":1726561988,"num_remapped_pgs":1} 2024-09-17T08:34:00.012 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:34:00.127 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:59 smithi077 ceph-mon[35734]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T08:34:00.127 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:33:59 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1199234409' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:34:00.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:59 smithi062 ceph-mon[25840]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T08:34:00.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:33:59 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1199234409' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T08:34:00.755 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:01.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:00 smithi062 ceph-mon[25840]: pgmap v104: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:01.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:00 smithi062 ceph-mon[25840]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T08:34:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:00 smithi077 ceph-mon[35734]: pgmap v104: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:00 smithi077 ceph-mon[35734]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T08:34:01.952 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:01 smithi077 ceph-mon[35734]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T08:34:02.267 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:01 smithi062 ceph-mon[25840]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: pgmap v107: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.248 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: pgmap v107: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:03.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:03.403 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:34:03.403 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":46,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","created":"2024-09-17T08:29:25.121016+0000","modified":"2024-09-17T08:34:01.929233+0000","last_up_change":"2024-09-17T08:33:57.905851+0000","last_in_change":"2024-09-17T08:33:08.348202+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T08:33:32.325513+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":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":"28693700-2a61-4f99-9a4f-8bf03e7807c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6800","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6801","nonce":3881713565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6802","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6803","nonce":3881713565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6806","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6807","nonce":3881713565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6804","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6805","nonce":3881713565}]},"public_addr":"172.21.15.77:6801/3881713565","cluster_addr":"172.21.15.77:6803/3881713565","heartbeat_back_addr":"172.21.15.77:6807/3881713565","heartbeat_front_addr":"172.21.15.77:6805/3881713565","state":["exists","up"]},{"osd":1,"uuid":"3ae04e14-594b-409d-be01-f951a1c68415","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6802","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6803","nonce":3035410695}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6804","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6805","nonce":3035410695}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6808","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6809","nonce":3035410695}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6806","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6807","nonce":3035410695}]},"public_addr":"172.21.15.62:6803/3035410695","cluster_addr":"172.21.15.62:6805/3035410695","heartbeat_back_addr":"172.21.15.62:6809/3035410695","heartbeat_front_addr":"172.21.15.62:6807/3035410695","state":["exists","up"]},{"osd":2,"uuid":"cbc91ed0-0a46-4789-9b7d-731f3ae8835a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6808","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6809","nonce":3345674102}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6810","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6811","nonce":3345674102}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6814","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6815","nonce":3345674102}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6812","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6813","nonce":3345674102}]},"public_addr":"172.21.15.77:6809/3345674102","cluster_addr":"172.21.15.77:6811/3345674102","heartbeat_back_addr":"172.21.15.77:6815/3345674102","heartbeat_front_addr":"172.21.15.77:6813/3345674102","state":["exists","up"]},{"osd":3,"uuid":"32a87789-8ccb-47db-bc45-cd7de2c1aed3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6810","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6811","nonce":1293380612}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6812","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6813","nonce":1293380612}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6816","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6817","nonce":1293380612}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6814","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6815","nonce":1293380612}]},"public_addr":"172.21.15.62:6811/1293380612","cluster_addr":"172.21.15.62:6813/1293380612","heartbeat_back_addr":"172.21.15.62:6817/1293380612","heartbeat_front_addr":"172.21.15.62:6815/1293380612","state":["exists","up"]},{"osd":4,"uuid":"2ec20c57-7a2c-4d01-a6f5-89afd5feb267","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6816","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6817","nonce":3662954297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6818","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6819","nonce":3662954297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6822","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6823","nonce":3662954297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6820","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6821","nonce":3662954297}]},"public_addr":"172.21.15.77:6817/3662954297","cluster_addr":"172.21.15.77:6819/3662954297","heartbeat_back_addr":"172.21.15.77:6823/3662954297","heartbeat_front_addr":"172.21.15.77:6821/3662954297","state":["exists","up"]},{"osd":5,"uuid":"69bd9a9b-58ff-427f-81fe-40be94877fe0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6818","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6819","nonce":852315898}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6820","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6821","nonce":852315898}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6824","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6825","nonce":852315898}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6822","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6823","nonce":852315898}]},"public_addr":"172.21.15.62:6819/852315898","cluster_addr":"172.21.15.62:6821/852315898","heartbeat_back_addr":"172.21.15.62:6825/852315898","heartbeat_front_addr":"172.21.15.62:6823/852315898","state":["exists","up"]},{"osd":6,"uuid":"3bc229c8-f446-4bcb-832b-fbc93fc60dd3","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.77:6824","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6825","nonce":2371330611}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6826","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6827","nonce":2371330611}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6830","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6831","nonce":2371330611}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6828","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6829","nonce":2371330611}]},"public_addr":"172.21.15.77:6825/2371330611","cluster_addr":"172.21.15.77:6827/2371330611","heartbeat_back_addr":"172.21.15.77:6831/2371330611","heartbeat_front_addr":"172.21.15.77:6829/2371330611","state":["exists","up"]},{"osd":7,"uuid":"f1b7121e-a0c4-41c8-abe5-ab55c6353984","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6826","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6827","nonce":867482668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6828","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6829","nonce":867482668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6832","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6833","nonce":867482668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6830","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6831","nonce":867482668}]},"public_addr":"172.21.15.62:6827/867482668","cluster_addr":"172.21.15.62:6829/867482668","heartbeat_back_addr":"172.21.15.62:6833/867482668","heartbeat_front_addr":"172.21.15.62:6831/867482668","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:21.242889+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:29.594134+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:26.350620+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:38.105716+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:31.696346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:47.107715+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:36.799706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:56.045044+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.62:0/3303630571":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/156897884":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/822617164":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6800/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6801/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/3382729429":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1879267451":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/2731563485":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/1929290279":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6800/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/3885251831":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1777358929":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6800/32967941":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6801/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6801/32967941":"2024-09-18T08:31:33.821302+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-17T08:34:04.211 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:03 smithi062 ceph-mon[25840]: Detected new or changed devices on smithi077 2024-09-17T08:34:04.211 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:03 smithi062 ceph-mon[25840]: Adjusting osd_memory_target on smithi077 to 3728M 2024-09-17T08:34:04.212 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:03 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2836948016' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:04.212 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:04.233 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T08:33:32.325513+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_acting': 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-17T08:34:04.234 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T08:34:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:03 smithi077 ceph-mon[35734]: Detected new or changed devices on smithi077 2024-09-17T08:34:04.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:03 smithi077 ceph-mon[35734]: Adjusting osd_memory_target on smithi077 to 3728M 2024-09-17T08:34:04.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:03 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2836948016' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:04.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:03 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:04.627 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:05.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:04 smithi062 ceph-mon[25840]: pgmap v109: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:05.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:04 smithi077 ceph-mon[35734]: pgmap v109: 1 pgs: 1 remapped+peering; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:06.544 INFO:teuthology.orchestra.run.smithi062.stdout:pg_num: 1 2024-09-17T08:34:06.683 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:06 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:06.684 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:06 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:06.684 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:06 smithi062 ceph-mon[25840]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:34:06.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:06 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:06.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:06 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:06.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:06 smithi077 ceph-mon[35734]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-17T08:34:07.377 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T08:34:07.377 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T08:34:07.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:07 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2768023069' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T08:34:07.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:07 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2768023069' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T08:34:07.818 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:08.522 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:08 smithi062 ceph-mon[25840]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-09-17T08:34:08.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:08 smithi077 ceph-mon[35734]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-09-17T08:34:10.566 INFO:teuthology.orchestra.run.smithi062.stdout:[client.0] 2024-09-17T08:34:10.567 INFO:teuthology.orchestra.run.smithi062.stdout: key = AQACP+lmdb6XIRAA4QL688lT0mg9hTWZl/JFKw== 2024-09-17T08:34:11.167 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:10 smithi062 ceph-mon[25840]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-17T08:34:11.167 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:10 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2663863355' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T08:34:11.167 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:10 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2663863355' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T08:34:11.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:10 smithi077 ceph-mon[35734]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-17T08:34:11.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:10 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2663863355' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T08:34:11.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:10 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2663863355' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T08:34:11.797 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:34:11.797 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-17T08:34:11.797 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-17T08:34:11.840 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T08:34:12.215 INFO:teuthology.orchestra.run.smithi077.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi077/config 2024-09-17T08:34:12.549 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: Detected new or changed devices on smithi062 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: Adjusting osd_memory_target on smithi062 to 2960M 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.550 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:34:12.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:34:12.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:34:12.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.551 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:12 smithi062 ceph-mon[25840]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:34:12.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: Detected new or changed devices on smithi062 2024-09-17T08:34:12.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: Adjusting osd_memory_target on smithi062 to 2960M 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:34:12.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:34:12.562 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:12 smithi077 ceph-mon[35734]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-17T08:34:15.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:14 smithi062 ceph-mon[25840]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:34:15.237 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:14 smithi077 ceph-mon[35734]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:34:15.708 INFO:teuthology.orchestra.run.smithi077.stdout:[client.1] 2024-09-17T08:34:15.708 INFO:teuthology.orchestra.run.smithi077.stdout: key = AQAHP+lmI4oLKhAAK7uj883cHOHTv92UIAm28g== 2024-09-17T08:34:16.173 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:15 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2671447478' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T08:34:16.173 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:15 smithi062 ceph-mon[25840]: 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-17T08:34:16.173 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:15 smithi062 ceph-mon[25840]: 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-17T08:34:16.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:15 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/2671447478' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T08:34:16.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:15 smithi077 ceph-mon[35734]: 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-17T08:34:16.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:15 smithi077 ceph-mon[35734]: 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-17T08:34:16.394 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:34:16.394 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-17T08:34:16.394 DEBUG:teuthology.orchestra.run.smithi077:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-17T08:34:16.433 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T08:34:16.433 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T08:34:16.433 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T08:34:16.755 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:17.255 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:16 smithi062 ceph-mon[25840]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:34:17.302 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:16 smithi077 ceph-mon[35734]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T08:34:19.000 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:18 smithi062 ceph-mon[25840]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:19.000 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:19.047 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:18 smithi077 ceph-mon[35734]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:19.047 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:19.436 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:34:20.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:19 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1986940910' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T08:34:20.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:19 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1986940910' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T08:34:20.844 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":19,"flags":0,"active_gid":14211,"active_name":"smithi062.kronsk","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6800","nonce":462558294},{"type":"v1","addr":"172.21.15.62:6801","nonce":462558294}]},"active_addr":"172.21.15.62:6801/462558294","active_change":"2024-09-17T08:31:33.821464+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":14236,"name":"smithi077.hztgqn","mgr_features":4540138322906710015,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","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","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.62:8443/","prometheus":"http://172.21.15.62: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"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.62:0","nonce":1954800119}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.62:0","nonce":1530977431}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.62:0","nonce":568385170}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.62:0","nonce":3890035646}]}]} 2024-09-17T08:34:20.848 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T08:34:20.849 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T08:34:20.849 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:34:20.987 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:20 smithi077 ceph-mon[35734]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:21.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:20 smithi062 ceph-mon[25840]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:21.935 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:23.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:23.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:22 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:23.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:22 smithi062 ceph-mon[25840]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:23.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:23.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:22 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:23.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:22 smithi077 ceph-mon[35734]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:24.407 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:34:24.407 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":46,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","created":"2024-09-17T08:29:25.121016+0000","modified":"2024-09-17T08:34:01.929233+0000","last_up_change":"2024-09-17T08:33:57.905851+0000","last_in_change":"2024-09-17T08:33:08.348202+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T08:33:32.325513+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":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":"28693700-2a61-4f99-9a4f-8bf03e7807c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6800","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6801","nonce":3881713565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6802","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6803","nonce":3881713565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6806","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6807","nonce":3881713565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6804","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6805","nonce":3881713565}]},"public_addr":"172.21.15.77:6801/3881713565","cluster_addr":"172.21.15.77:6803/3881713565","heartbeat_back_addr":"172.21.15.77:6807/3881713565","heartbeat_front_addr":"172.21.15.77:6805/3881713565","state":["exists","up"]},{"osd":1,"uuid":"3ae04e14-594b-409d-be01-f951a1c68415","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6802","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6803","nonce":3035410695}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6804","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6805","nonce":3035410695}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6808","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6809","nonce":3035410695}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6806","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6807","nonce":3035410695}]},"public_addr":"172.21.15.62:6803/3035410695","cluster_addr":"172.21.15.62:6805/3035410695","heartbeat_back_addr":"172.21.15.62:6809/3035410695","heartbeat_front_addr":"172.21.15.62:6807/3035410695","state":["exists","up"]},{"osd":2,"uuid":"cbc91ed0-0a46-4789-9b7d-731f3ae8835a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6808","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6809","nonce":3345674102}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6810","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6811","nonce":3345674102}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6814","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6815","nonce":3345674102}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6812","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6813","nonce":3345674102}]},"public_addr":"172.21.15.77:6809/3345674102","cluster_addr":"172.21.15.77:6811/3345674102","heartbeat_back_addr":"172.21.15.77:6815/3345674102","heartbeat_front_addr":"172.21.15.77:6813/3345674102","state":["exists","up"]},{"osd":3,"uuid":"32a87789-8ccb-47db-bc45-cd7de2c1aed3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6810","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6811","nonce":1293380612}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6812","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6813","nonce":1293380612}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6816","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6817","nonce":1293380612}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6814","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6815","nonce":1293380612}]},"public_addr":"172.21.15.62:6811/1293380612","cluster_addr":"172.21.15.62:6813/1293380612","heartbeat_back_addr":"172.21.15.62:6817/1293380612","heartbeat_front_addr":"172.21.15.62:6815/1293380612","state":["exists","up"]},{"osd":4,"uuid":"2ec20c57-7a2c-4d01-a6f5-89afd5feb267","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6816","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6817","nonce":3662954297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6818","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6819","nonce":3662954297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6822","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6823","nonce":3662954297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6820","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6821","nonce":3662954297}]},"public_addr":"172.21.15.77:6817/3662954297","cluster_addr":"172.21.15.77:6819/3662954297","heartbeat_back_addr":"172.21.15.77:6823/3662954297","heartbeat_front_addr":"172.21.15.77:6821/3662954297","state":["exists","up"]},{"osd":5,"uuid":"69bd9a9b-58ff-427f-81fe-40be94877fe0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6818","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6819","nonce":852315898}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6820","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6821","nonce":852315898}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6824","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6825","nonce":852315898}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6822","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6823","nonce":852315898}]},"public_addr":"172.21.15.62:6819/852315898","cluster_addr":"172.21.15.62:6821/852315898","heartbeat_back_addr":"172.21.15.62:6825/852315898","heartbeat_front_addr":"172.21.15.62:6823/852315898","state":["exists","up"]},{"osd":6,"uuid":"3bc229c8-f446-4bcb-832b-fbc93fc60dd3","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.77:6824","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6825","nonce":2371330611}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6826","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6827","nonce":2371330611}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6830","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6831","nonce":2371330611}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6828","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6829","nonce":2371330611}]},"public_addr":"172.21.15.77:6825/2371330611","cluster_addr":"172.21.15.77:6827/2371330611","heartbeat_back_addr":"172.21.15.77:6831/2371330611","heartbeat_front_addr":"172.21.15.77:6829/2371330611","state":["exists","up"]},{"osd":7,"uuid":"f1b7121e-a0c4-41c8-abe5-ab55c6353984","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6826","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6827","nonce":867482668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6828","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6829","nonce":867482668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6832","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6833","nonce":867482668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6830","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6831","nonce":867482668}]},"public_addr":"172.21.15.62:6827/867482668","cluster_addr":"172.21.15.62:6829/867482668","heartbeat_back_addr":"172.21.15.62:6833/867482668","heartbeat_front_addr":"172.21.15.62:6831/867482668","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:21.242889+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:29.594134+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:26.350620+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:38.105716+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:31.696346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:47.107715+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:36.799706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:56.045044+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.62:0/3303630571":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/156897884":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/822617164":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6800/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6801/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/3382729429":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1879267451":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/2731563485":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/1929290279":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6800/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/3885251831":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1777358929":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6800/32967941":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6801/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6801/32967941":"2024-09-18T08:31:33.821302+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-17T08:34:25.047 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:25.047 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:24 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:25.048 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:24 smithi077 ceph-mon[35734]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:25.048 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:24 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3265758903' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:25.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:25.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:24 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:34:25.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:24 smithi062 ceph-mon[25840]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:25.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:24 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3265758903' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:25.141 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T08:34:25.141 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T08:34:25.355 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:27.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:26 smithi062 ceph-mon[25840]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:27.112 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:34:27.113 INFO:teuthology.orchestra.run.smithi062.stdout:{"epoch":46,"fsid":"d6ef9a88-74ce-11ef-bceb-c7b262605968","created":"2024-09-17T08:29:25.121016+0000","modified":"2024-09-17T08:34:01.929233+0000","last_up_change":"2024-09-17T08:33:57.905851+0000","last_in_change":"2024-09-17T08:33:08.348202+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T08:33:32.325513+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":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":"28693700-2a61-4f99-9a4f-8bf03e7807c9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6800","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6801","nonce":3881713565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6802","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6803","nonce":3881713565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6806","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6807","nonce":3881713565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6804","nonce":3881713565},{"type":"v1","addr":"172.21.15.77:6805","nonce":3881713565}]},"public_addr":"172.21.15.77:6801/3881713565","cluster_addr":"172.21.15.77:6803/3881713565","heartbeat_back_addr":"172.21.15.77:6807/3881713565","heartbeat_front_addr":"172.21.15.77:6805/3881713565","state":["exists","up"]},{"osd":1,"uuid":"3ae04e14-594b-409d-be01-f951a1c68415","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6802","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6803","nonce":3035410695}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6804","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6805","nonce":3035410695}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6808","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6809","nonce":3035410695}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6806","nonce":3035410695},{"type":"v1","addr":"172.21.15.62:6807","nonce":3035410695}]},"public_addr":"172.21.15.62:6803/3035410695","cluster_addr":"172.21.15.62:6805/3035410695","heartbeat_back_addr":"172.21.15.62:6809/3035410695","heartbeat_front_addr":"172.21.15.62:6807/3035410695","state":["exists","up"]},{"osd":2,"uuid":"cbc91ed0-0a46-4789-9b7d-731f3ae8835a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6808","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6809","nonce":3345674102}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6810","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6811","nonce":3345674102}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6814","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6815","nonce":3345674102}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6812","nonce":3345674102},{"type":"v1","addr":"172.21.15.77:6813","nonce":3345674102}]},"public_addr":"172.21.15.77:6809/3345674102","cluster_addr":"172.21.15.77:6811/3345674102","heartbeat_back_addr":"172.21.15.77:6815/3345674102","heartbeat_front_addr":"172.21.15.77:6813/3345674102","state":["exists","up"]},{"osd":3,"uuid":"32a87789-8ccb-47db-bc45-cd7de2c1aed3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6810","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6811","nonce":1293380612}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6812","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6813","nonce":1293380612}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6816","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6817","nonce":1293380612}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6814","nonce":1293380612},{"type":"v1","addr":"172.21.15.62:6815","nonce":1293380612}]},"public_addr":"172.21.15.62:6811/1293380612","cluster_addr":"172.21.15.62:6813/1293380612","heartbeat_back_addr":"172.21.15.62:6817/1293380612","heartbeat_front_addr":"172.21.15.62:6815/1293380612","state":["exists","up"]},{"osd":4,"uuid":"2ec20c57-7a2c-4d01-a6f5-89afd5feb267","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6816","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6817","nonce":3662954297}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6818","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6819","nonce":3662954297}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6822","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6823","nonce":3662954297}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6820","nonce":3662954297},{"type":"v1","addr":"172.21.15.77:6821","nonce":3662954297}]},"public_addr":"172.21.15.77:6817/3662954297","cluster_addr":"172.21.15.77:6819/3662954297","heartbeat_back_addr":"172.21.15.77:6823/3662954297","heartbeat_front_addr":"172.21.15.77:6821/3662954297","state":["exists","up"]},{"osd":5,"uuid":"69bd9a9b-58ff-427f-81fe-40be94877fe0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6818","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6819","nonce":852315898}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6820","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6821","nonce":852315898}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6824","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6825","nonce":852315898}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6822","nonce":852315898},{"type":"v1","addr":"172.21.15.62:6823","nonce":852315898}]},"public_addr":"172.21.15.62:6819/852315898","cluster_addr":"172.21.15.62:6821/852315898","heartbeat_back_addr":"172.21.15.62:6825/852315898","heartbeat_front_addr":"172.21.15.62:6823/852315898","state":["exists","up"]},{"osd":6,"uuid":"3bc229c8-f446-4bcb-832b-fbc93fc60dd3","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.77:6824","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6825","nonce":2371330611}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6826","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6827","nonce":2371330611}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6830","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6831","nonce":2371330611}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.77:6828","nonce":2371330611},{"type":"v1","addr":"172.21.15.77:6829","nonce":2371330611}]},"public_addr":"172.21.15.77:6825/2371330611","cluster_addr":"172.21.15.77:6827/2371330611","heartbeat_back_addr":"172.21.15.77:6831/2371330611","heartbeat_front_addr":"172.21.15.77:6829/2371330611","state":["exists","up"]},{"osd":7,"uuid":"f1b7121e-a0c4-41c8-abe5-ab55c6353984","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6826","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6827","nonce":867482668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6828","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6829","nonce":867482668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6832","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6833","nonce":867482668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.62:6830","nonce":867482668},{"type":"v1","addr":"172.21.15.62:6831","nonce":867482668}]},"public_addr":"172.21.15.62:6827/867482668","cluster_addr":"172.21.15.62:6829/867482668","heartbeat_back_addr":"172.21.15.62:6833/867482668","heartbeat_front_addr":"172.21.15.62:6831/867482668","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:21.242889+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:29.594134+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:26.350620+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:38.105716+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:31.696346+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:47.107715+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:36.799706+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T08:33:56.045044+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.62:0/3303630571":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/156897884":"2024-09-18T08:31:33.821302+0000","172.21.15.62:0/822617164":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6800/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:6801/3364552655":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/3382729429":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1879267451":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/2731563485":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/1929290279":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6800/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:0/3885251831":"2024-09-18T08:29:58.733926+0000","172.21.15.62:0/1777358929":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6800/32967941":"2024-09-18T08:31:33.821302+0000","172.21.15.62:6801/4022690177":"2024-09-18T08:30:30.558523+0000","172.21.15.62:6801/32967941":"2024-09-18T08:31:33.821302+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-17T08:34:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:26 smithi077 ceph-mon[35734]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:27.791 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T08:34:27.792 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T08:34:27.792 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T08:34:27.792 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T08:34:27.793 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T08:34:27.793 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T08:34:27.794 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-17T08:34:27.794 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-17T08:34:28.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:27 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2282593718' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:28.258 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.301 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.306 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.307 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.307 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:27 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2282593718' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T08:34:28.311 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.311 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:28.311 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:29.209 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:28 smithi062 ceph-mon[25840]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:28 smithi077 ceph-mon[35734]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:31.204 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:30 smithi062 ceph-mon[25840]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:31.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:30 smithi077 ceph-mon[35734]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:33.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:32 smithi062 ceph-mon[25840]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:33.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:32 smithi077 ceph-mon[35734]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:34.148 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:34.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:35.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:34 smithi062 ceph-mon[25840]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:35.200 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:34 smithi077 ceph-mon[35734]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:37.141 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:36 smithi062 ceph-mon[25840]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:37.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:36 smithi077 ceph-mon[35734]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:39.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:38 smithi062 ceph-mon[25840]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:39.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:38 smithi077 ceph-mon[35734]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:39.483 INFO:teuthology.orchestra.run.smithi062.stdout:163208757261 2024-09-17T08:34:39.483 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T08:34:41.109 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:40 smithi062 ceph-mon[25840]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:41.132 INFO:teuthology.orchestra.run.smithi062.stdout:85899345937 2024-09-17T08:34:41.133 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T08:34:41.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:40 smithi077 ceph-mon[35734]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:42.836 INFO:teuthology.orchestra.run.smithi062.stdout:98784247824 2024-09-17T08:34:42.836 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T08:34:43.071 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:42 smithi062 ceph-mon[25840]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:43.301 INFO:teuthology.orchestra.run.smithi062.stdout:68719476754 2024-09-17T08:34:43.302 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T08:34:43.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:42 smithi077 ceph-mon[35734]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:43.832 INFO:teuthology.orchestra.run.smithi062.stdout:180388626444 2024-09-17T08:34:43.832 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-17T08:34:44.783 INFO:teuthology.orchestra.run.smithi062.stdout:133143986191 2024-09-17T08:34:44.783 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T08:34:45.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:44 smithi062 ceph-mon[25840]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:45.274 INFO:teuthology.orchestra.run.smithi062.stdout:124554051599 2024-09-17T08:34:45.275 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-17T08:34:45.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:44 smithi077 ceph-mon[35734]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:45.360 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:45.360 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:45.773 INFO:teuthology.orchestra.run.smithi062.stdout:107374182416 2024-09-17T08:34:45.784 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T08:34:47.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:46 smithi062 ceph-mon[25840]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:47.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:46 smithi077 ceph-mon[35734]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:47.346 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:47.346 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:47.347 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:47.348 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:47.353 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:49.072 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:48 smithi062 ceph-mon[25840]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:49.072 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:49.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:48 smithi077 ceph-mon[35734]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:49.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:34:51.101 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:50 smithi062 ceph-mon[25840]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:51.265 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:50 smithi077 ceph-mon[35734]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:52.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:51 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/4266423793' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T08:34:52.180 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:34:52.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:51 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/4266423793' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T08:34:53.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:52 smithi062 ceph-mon[25840]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:53.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:52 smithi077 ceph-mon[35734]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:53.433 INFO:teuthology.orchestra.run.smithi062.stdout:98784247826 2024-09-17T08:34:54.059 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247824 got 98784247826 for osd.1 2024-09-17T08:34:54.059 DEBUG:teuthology.parallel:result is None 2024-09-17T08:34:54.278 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:54 smithi062 ceph-mon[25840]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:54.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:54 smithi077 ceph-mon[35734]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:55.835 INFO:teuthology.orchestra.run.smithi062.stdout:68719476757 2024-09-17T08:34:56.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:55 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3143215767' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T08:34:56.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:55 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3143215767' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T08:34:57.007 INFO:teuthology.orchestra.run.smithi062.stdout:124554051602 2024-09-17T08:34:57.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:56 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3615099667' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T08:34:57.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:56 smithi062 ceph-mon[25840]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:57.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:56 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3615099667' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T08:34:57.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:56 smithi077 ceph-mon[35734]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:57.599 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051599 got 124554051602 for osd.6 2024-09-17T08:34:57.599 DEBUG:teuthology.parallel:result is None 2024-09-17T08:34:58.010 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476754 got 68719476757 for osd.0 2024-09-17T08:34:58.010 DEBUG:teuthology.parallel:result is None 2024-09-17T08:34:58.819 INFO:teuthology.orchestra.run.smithi062.stdout:163208757265 2024-09-17T08:34:59.037 INFO:teuthology.orchestra.run.smithi062.stdout:180388626447 2024-09-17T08:34:59.037 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:58 smithi062 ceph-mon[25840]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:59.038 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:58 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2505511917' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T08:34:59.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:58 smithi077 ceph-mon[35734]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:34:59.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:58 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2505511917' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T08:35:00.014 INFO:teuthology.orchestra.run.smithi062.stdout:107374182420 2024-09-17T08:35:00.230 INFO:teuthology.orchestra.run.smithi062.stdout:133143986194 2024-09-17T08:35:00.230 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:34:59 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/67277691' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T08:35:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:34:59 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/67277691' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T08:35:01.024 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986191 got 133143986194 for osd.3 2024-09-17T08:35:01.024 DEBUG:teuthology.parallel:result is None 2024-09-17T08:35:01.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:00 smithi062 ceph-mon[25840]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:01.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2460232479' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T08:35:01.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/3271412075' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T08:35:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:00 smithi077 ceph-mon[35734]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:00 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2460232479' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T08:35:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:00 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/3271412075' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T08:35:01.395 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757261 got 163208757265 for osd.5 2024-09-17T08:35:01.395 DEBUG:teuthology.parallel:result is None 2024-09-17T08:35:02.106 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626444 got 180388626447 for osd.7 2024-09-17T08:35:02.107 DEBUG:teuthology.parallel:result is None 2024-09-17T08:35:02.459 INFO:teuthology.orchestra.run.smithi062.stdout:85899345941 2024-09-17T08:35:02.836 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182416 got 107374182420 for osd.4 2024-09-17T08:35:02.836 DEBUG:teuthology.parallel:result is None 2024-09-17T08:35:03.175 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:02 smithi062 ceph-mon[25840]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:03.175 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:02 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/540545712' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T08:35:03.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:02 smithi077 ceph-mon[35734]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:02 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/540545712' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T08:35:03.553 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345937 got 85899345941 for osd.2 2024-09-17T08:35:03.553 DEBUG:teuthology.parallel:result is None 2024-09-17T08:35:03.553 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T08:35:03.553 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T08:35:03.770 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:04.145 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:03 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:05.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:04 smithi062 ceph-mon[25840]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:04 smithi077 ceph-mon[35734]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:05.711 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:05.711 INFO:teuthology.orchestra.run.smithi062.stderr:dumped all 2024-09-17T08:35:06.381 INFO:teuthology.orchestra.run.smithi062.stdout:{"pg_ready":true,"pg_map":{"version":139,"stamp":"2024-09-17T08:35:03.860974+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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"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":197,"ondisk_log_size":197,"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":221644,"kb_used_data":5452,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706804,"statfs":{"total":767926730752,"available":767699767296,"internally_reserved":0,"allocated":5582848,"data_stored":3300552,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12744,"internal_metadata":221236792},"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.002308"},"pg_stats":[{"pgid":"1.0","version":"38'197","reported_seq":301,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-17T08:34:01.934209+0000","last_change":"2024-09-17T08:34:01.933887+0000","last_active":"2024-09-17T08:34:01.934209+0000","last_peered":"2024-09-17T08:34:01.934209+0000","last_clean":"2024-09-17T08:34:01.934209+0000","last_became_active":"2024-09-17T08:34:01.933434+0000","last_became_peered":"2024-09-17T08:34:01.933434+0000","last_unstale":"2024-09-17T08:34:01.934209+0000","last_undegraded":"2024-09-17T08:34:01.934209+0000","last_fullsized":"2024-09-17T08:34:01.934209+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T08:33:32.325592+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T08:33:32.325592+0000","last_clean_scrub_stamp":"2024-09-17T08:33:32.325592+0000","objects_scrubbed":0,"log_size":197,"log_dups_size":0,"ondisk_log_size":197,"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-18T16:14:39.594144+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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":42,"seq":180388626448,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28064,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712992,"statfs":{"total":95990841344,"available":95962103808,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1589,"internal_metadata":27654603},"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":[],"network_ping_times":[{"osd":0,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.497}]},{"osd":1,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.34699999999999998}]},{"osd":2,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.48599999999999999}]},{"osd":3,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.41299999999999998}]},{"osd":4,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.45700000000000002}]},{"osd":5,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.439}]},{"osd":6,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.58299999999999996}]}]},{"osd":5,"up_from":38,"seq":163208757266,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.61099999999999999},{"interface":"front","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.53400000000000003}]},{"osd":1,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"last":0.496},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"last":0.46400000000000002}]},{"osd":2,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.66700000000000004},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"last":0.55600000000000005}]},{"osd":3,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.60099999999999998,"5min":0.60099999999999998,"15min":0.60099999999999998},"last":0.41799999999999998},{"interface":"front","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"last":0.56499999999999995}]},{"osd":4,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.621},{"interface":"front","average":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"min":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"max":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.64000000000000001}]},{"osd":6,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.73599999999999999,"5min":0.73599999999999999,"15min":0.73599999999999999},"last":0.63200000000000001},{"interface":"front","average":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.60499999999999998}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.58399999999999996}]}]},{"osd":3,"up_from":31,"seq":133143986195,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28072,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712984,"statfs":{"total":95990841344,"available":95962095616,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"last":0.57299999999999995},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.46600000000000003}]},{"osd":1,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"min":{"1min":0.221,"5min":0.221,"15min":0.221},"max":{"1min":0.499,"5min":0.499,"15min":0.499},"last":0.27500000000000002},{"interface":"front","average":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"last":0.41599999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.53500000000000003},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.63900000000000001,"5min":0.63900000000000001,"15min":0.63900000000000001},"last":0.501}]},{"osd":4,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.50900000000000001},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.47999999999999998}]},{"osd":5,"last update":"Tue Sep 17 08:34:53 2024","interfaces":[{"interface":"back","average":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.34200000000000003},{"interface":"front","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.44}]},{"osd":6,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.52400000000000002},{"interface":"front","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.59199999999999997}]},{"osd":7,"last update":"Tue Sep 17 08:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.76200000000000001},"last":0.38500000000000001},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.72099999999999997,"5min":0.72099999999999997,"15min":0.72099999999999997},"last":0.55300000000000005}]}]},{"osd":6,"up_from":29,"seq":124554051604,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27492,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713564,"statfs":{"total":95990841344,"available":95962689536,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"min":{"1min":0.255,"5min":0.255,"15min":0.255},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.35299999999999998},{"interface":"front","average":{"1min":0.38,"5min":0.38,"15min":0.38},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"last":0.38}]},{"osd":1,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.93899999999999995,"5min":0.93899999999999995,"15min":0.93899999999999995},"last":0.67700000000000005},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"last":0.58399999999999996}]},{"osd":2,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"last":0.42599999999999999},{"interface":"front","average":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"last":0.44600000000000001}]},{"osd":3,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":0.86399999999999999,"5min":0.86399999999999999,"15min":0.86399999999999999},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.56100000000000005}]},{"osd":4,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.47899999999999998},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.40699999999999997}]},{"osd":5,"last update":"Tue Sep 17 08:34:53 2024","interfaces":[{"interface":"back","average":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.80100000000000005,"5min":0.80100000000000005,"15min":0.80100000000000005},"last":0.57299999999999995},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.64400000000000002}]},{"osd":7,"last update":"Tue Sep 17 08:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.90000000000000002,"5min":0.90000000000000002,"15min":0.90000000000000002},"last":0.71099999999999997},{"interface":"front","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.91300000000000003,"5min":0.91300000000000003,"15min":0.91300000000000003},"last":0.60499999999999998}]}]},{"osd":4,"up_from":25,"seq":107374182421,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.38,"5min":0.38,"15min":0.38},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"last":0.35599999999999998},{"interface":"front","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.29099999999999998}]},{"osd":1,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.69399999999999995},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.56999999999999995}]},{"osd":2,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.41299999999999998,"5min":0.41299999999999998,"15min":0.41299999999999998},"min":{"1min":0.28299999999999997,"5min":0.28299999999999997,"15min":0.28299999999999997},"max":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"last":0.377},{"interface":"front","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.314}]},{"osd":3,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.52000000000000002}]},{"osd":5,"last update":"Tue Sep 17 08:34:51 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.61299999999999999},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.42299999999999999,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.66100000000000003}]},{"osd":6,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.42999999999999999},{"interface":"front","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.72499999999999998,"5min":0.72499999999999998,"15min":0.72499999999999998},"last":0.46800000000000003}]},{"osd":7,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.81999999999999995,"5min":0.81999999999999995,"15min":0.81999999999999995},"last":0.64600000000000002},{"interface":"front","average":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"min":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"max":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"last":0.63}]}]},{"osd":1,"up_from":23,"seq":98784247829,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.77200000000000002,"5min":0.77200000000000002,"15min":0.77200000000000002},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":1.0860000000000001,"5min":1.0860000000000001,"15min":1.0860000000000001},"last":0.39200000000000002}]},{"osd":2,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.28299999999999997,"5min":0.28299999999999997,"15min":0.28299999999999997},"max":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"last":0.437},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.52000000000000002}]},{"osd":3,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"last":0.31900000000000001},{"interface":"front","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.35699999999999998}]},{"osd":4,"last update":"Tue Sep 17 08:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.495},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.40600000000000003}]},{"osd":5,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.44900000000000001,"5min":0.44900000000000001,"15min":0.44900000000000001},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.29299999999999998,"5min":0.29299999999999998,"15min":0.29299999999999998},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.45100000000000001}]},{"osd":6,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.46500000000000002},{"interface":"front","average":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.82899999999999996,"5min":0.82899999999999996,"15min":0.82899999999999996},"last":0.54900000000000004}]},{"osd":7,"last update":"Tue Sep 17 08:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.56699999999999995},{"interface":"front","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.53800000000000003}]}]},{"osd":2,"up_from":20,"seq":85899345941,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:28 2024","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.19400000000000001,"5min":0.19400000000000001,"15min":0.19400000000000001},"max":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"last":0.32400000000000001},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.22800000000000001,"5min":0.22800000000000001,"15min":0.22800000000000001},"max":{"1min":0.61099999999999999,"5min":0.61099999999999999,"15min":0.61099999999999999},"last":0.442}]},{"osd":1,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.76700000000000002,"5min":0.76700000000000002,"15min":0.76700000000000002},"last":0.49199999999999999},{"interface":"front","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.52800000000000002}]},{"osd":3,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.65400000000000003},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.78000000000000003,"5min":0.78000000000000003,"15min":0.78000000000000003},"last":0.57799999999999996}]},{"osd":4,"last update":"Tue Sep 17 08:34:34 2024","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.217,"5min":0.217,"15min":0.217},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.56399999999999995},{"interface":"front","average":{"1min":0.45400000000000001,"5min":0.45400000000000001,"15min":0.45400000000000001},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.628}]},{"osd":5,"last update":"Tue Sep 17 08:34:52 2024","interfaces":[{"interface":"back","average":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.41299999999999998,"5min":0.41299999999999998,"15min":0.41299999999999998},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.54600000000000004}]},{"osd":6,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"last":0.378},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.59199999999999997}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.47399999999999998}]}]},{"osd":0,"up_from":16,"seq":68719476759,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28072,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712984,"statfs":{"total":95990841344,"available":95962095616,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 08:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.47099999999999997,"5min":0.47099999999999997,"15min":0.47099999999999997},"min":{"1min":0.29099999999999998,"5min":0.29099999999999998,"15min":0.29099999999999998},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.53900000000000003},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.60599999999999998}]},{"osd":2,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"min":{"1min":0.215,"5min":0.215,"15min":0.215},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.37},{"interface":"front","average":{"1min":0.32500000000000001,"5min":0.32500000000000001,"15min":0.32500000000000001},"min":{"1min":0.214,"5min":0.214,"15min":0.214},"max":{"1min":0.495,"5min":0.495,"15min":0.495},"last":0.33900000000000002}]},{"osd":3,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.65800000000000003,"5min":0.65800000000000003,"15min":0.65800000000000003},"last":0.503},{"interface":"front","average":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.71599999999999997}]},{"osd":4,"last update":"Tue Sep 17 08:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"last":0.52500000000000002},{"interface":"front","average":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"min":{"1min":0.253,"5min":0.253,"15min":0.253},"max":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"last":0.40400000000000003}]},{"osd":5,"last update":"Tue Sep 17 08:34:48 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.624},{"interface":"front","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.74399999999999999}]},{"osd":6,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.59899999999999998,"5min":0.59899999999999998,"15min":0.59899999999999998},"last":0.436},{"interface":"front","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"last":0.48699999999999999}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.72999999999999998}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T08:35:06.383 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T08:35:06.589 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:07.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:06 smithi062 ceph-mon[25840]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:35:07.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:06 smithi062 ceph-mon[25840]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:07.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:06 smithi077 ceph-mon[35734]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:35:07.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:06 smithi077 ceph-mon[35734]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:08.395 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:08.395 INFO:teuthology.orchestra.run.smithi062.stderr:dumped all 2024-09-17T08:35:08.977 INFO:teuthology.orchestra.run.smithi062.stdout:{"pg_ready":true,"pg_map":{"version":141,"stamp":"2024-09-17T08:35:07.861804+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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"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":197,"ondisk_log_size":197,"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":221644,"kb_used_data":5452,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706804,"statfs":{"total":767926730752,"available":767699767296,"internally_reserved":0,"allocated":5582848,"data_stored":3300552,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12744,"internal_metadata":221236792},"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.002373"},"pg_stats":[{"pgid":"1.0","version":"38'197","reported_seq":301,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-17T08:34:01.934209+0000","last_change":"2024-09-17T08:34:01.933887+0000","last_active":"2024-09-17T08:34:01.934209+0000","last_peered":"2024-09-17T08:34:01.934209+0000","last_clean":"2024-09-17T08:34:01.934209+0000","last_became_active":"2024-09-17T08:34:01.933434+0000","last_became_peered":"2024-09-17T08:34:01.933434+0000","last_unstale":"2024-09-17T08:34:01.934209+0000","last_undegraded":"2024-09-17T08:34:01.934209+0000","last_fullsized":"2024-09-17T08:34:01.934209+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T08:33:32.325592+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T08:33:32.325592+0000","last_clean_scrub_stamp":"2024-09-17T08:33:32.325592+0000","objects_scrubbed":0,"log_size":197,"log_dups_size":0,"ondisk_log_size":197,"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-18T16:14:39.594144+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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"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":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":4,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":42,"seq":180388626449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28064,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712992,"statfs":{"total":95990841344,"available":95962103808,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1589,"internal_metadata":27654603},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.82599999999999996,"5min":0.82599999999999996,"15min":0.82599999999999996},"last":0.56399999999999995},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.49199999999999999}]},{"osd":1,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.71899999999999997,"5min":0.71899999999999997,"15min":0.71899999999999997},"last":0.33800000000000002},{"interface":"front","average":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.44900000000000001}]},{"osd":2,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":0.92600000000000005,"5min":0.92600000000000005,"15min":0.92600000000000005},"last":0.68200000000000005},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.98399999999999999,"5min":0.98399999999999999,"15min":0.98399999999999999},"last":0.505}]},{"osd":3,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.443,"5min":0.443,"15min":0.443},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.39500000000000002},{"interface":"front","average":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.35699999999999998}]},{"osd":4,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"max":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"last":0.48499999999999999},{"interface":"front","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.76200000000000001},"last":0.70999999999999996}]},{"osd":5,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.80400000000000005,"5min":0.80400000000000005,"15min":0.80400000000000005},"last":0.46600000000000003},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.82599999999999996,"5min":0.82599999999999996,"15min":0.82599999999999996},"last":0.52800000000000002}]},{"osd":6,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"min":{"1min":0.435,"5min":0.435,"15min":0.435},"max":{"1min":0.88100000000000001,"5min":0.88100000000000001,"15min":0.88100000000000001},"last":0.57899999999999996},{"interface":"front","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"max":{"1min":1.0009999999999999,"5min":1.0009999999999999,"15min":1.0009999999999999},"last":0.60899999999999999}]}]},{"osd":5,"up_from":38,"seq":163208757267,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.55700000000000005},{"interface":"front","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.47599999999999998}]},{"osd":1,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"last":0.29899999999999999},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"last":0.39600000000000002}]},{"osd":2,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"last":0.496}]},{"osd":3,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.60099999999999998,"5min":0.60099999999999998,"15min":0.60099999999999998},"last":0.57899999999999996},{"interface":"front","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"last":0.48899999999999999}]},{"osd":4,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.437},{"interface":"front","average":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"min":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"max":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.54000000000000004}]},{"osd":6,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.73599999999999999,"5min":0.73599999999999999,"15min":0.73599999999999999},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.51300000000000001}]},{"osd":7,"last update":"Tue Sep 17 08:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.68600000000000005,"5min":0.68600000000000005,"15min":0.68600000000000005},"last":0.63800000000000001},{"interface":"front","average":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.52700000000000002}]}]},{"osd":3,"up_from":31,"seq":133143986196,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28072,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712984,"statfs":{"total":95990841344,"available":95962095616,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"last":0.68899999999999995},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.70699999999999996}]},{"osd":1,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"min":{"1min":0.221,"5min":0.221,"15min":0.221},"max":{"1min":0.499,"5min":0.499,"15min":0.499},"last":0.443},{"interface":"front","average":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"last":0.46500000000000002}]},{"osd":2,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.55100000000000005},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.63900000000000001,"5min":0.63900000000000001,"15min":0.63900000000000001},"last":0.77400000000000002}]},{"osd":4,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.61299999999999999},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.749,"5min":0.749,"15min":0.749},"last":0.628}]},{"osd":5,"last update":"Tue Sep 17 08:34:53 2024","interfaces":[{"interface":"back","average":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.5}]},{"osd":6,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.748},{"interface":"front","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"last":0.56999999999999995}]},{"osd":7,"last update":"Tue Sep 17 08:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.76200000000000001,"5min":0.76200000000000001,"15min":0.76200000000000001},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.72099999999999997,"5min":0.72099999999999997,"15min":0.72099999999999997},"last":0.53900000000000003}]}]},{"osd":6,"up_from":29,"seq":124554051604,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27492,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713564,"statfs":{"total":95990841344,"available":95962689536,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"min":{"1min":0.255,"5min":0.255,"15min":0.255},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.35299999999999998},{"interface":"front","average":{"1min":0.38,"5min":0.38,"15min":0.38},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"last":0.38}]},{"osd":1,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.93899999999999995,"5min":0.93899999999999995,"15min":0.93899999999999995},"last":0.67700000000000005},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.82999999999999996,"5min":0.82999999999999996,"15min":0.82999999999999996},"last":0.58399999999999996}]},{"osd":2,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"last":0.42599999999999999},{"interface":"front","average":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"last":0.44600000000000001}]},{"osd":3,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":0.86399999999999999,"5min":0.86399999999999999,"15min":0.86399999999999999},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.56100000000000005}]},{"osd":4,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.47899999999999998},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.40699999999999997}]},{"osd":5,"last update":"Tue Sep 17 08:34:53 2024","interfaces":[{"interface":"back","average":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.80100000000000005,"5min":0.80100000000000005,"15min":0.80100000000000005},"last":0.57299999999999995},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.64400000000000002}]},{"osd":7,"last update":"Tue Sep 17 08:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.90000000000000002,"5min":0.90000000000000002,"15min":0.90000000000000002},"last":0.71099999999999997},{"interface":"front","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.91300000000000003,"5min":0.91300000000000003,"15min":0.91300000000000003},"last":0.60499999999999998}]}]},{"osd":4,"up_from":25,"seq":107374182421,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.38,"5min":0.38,"15min":0.38},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"last":0.35599999999999998},{"interface":"front","average":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.29099999999999998}]},{"osd":1,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.69399999999999995},{"interface":"front","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.56999999999999995}]},{"osd":2,"last update":"Tue Sep 17 08:34:37 2024","interfaces":[{"interface":"back","average":{"1min":0.41299999999999998,"5min":0.41299999999999998,"15min":0.41299999999999998},"min":{"1min":0.28299999999999997,"5min":0.28299999999999997,"15min":0.28299999999999997},"max":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"last":0.377},{"interface":"front","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.314}]},{"osd":3,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.52000000000000002}]},{"osd":5,"last update":"Tue Sep 17 08:34:51 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.61299999999999999},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.42299999999999999,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.66100000000000003}]},{"osd":6,"last update":"Tue Sep 17 08:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.42999999999999999},{"interface":"front","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.72499999999999998,"5min":0.72499999999999998,"15min":0.72499999999999998},"last":0.46800000000000003}]},{"osd":7,"last update":"Tue Sep 17 08:34:59 2024","interfaces":[{"interface":"back","average":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.81999999999999995,"5min":0.81999999999999995,"15min":0.81999999999999995},"last":0.64600000000000002},{"interface":"front","average":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"min":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"max":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"last":0.63}]}]},{"osd":1,"up_from":23,"seq":98784247830,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.77200000000000002,"5min":0.77200000000000002,"15min":0.77200000000000002},"last":0.501},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":1.0860000000000001,"5min":1.0860000000000001,"15min":1.0860000000000001},"last":0.32100000000000001}]},{"osd":2,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.28299999999999997,"5min":0.28299999999999997,"15min":0.28299999999999997},"max":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"last":0.46100000000000002},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.54100000000000004}]},{"osd":3,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"min":{"1min":0.23300000000000001,"5min":0.23300000000000001,"15min":0.23300000000000001},"max":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.52000000000000002}]},{"osd":4,"last update":"Tue Sep 17 08:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.40200000000000002},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.878,"5min":0.878,"15min":0.878},"last":0.48799999999999999}]},{"osd":5,"last update":"Tue Sep 17 08:34:50 2024","interfaces":[{"interface":"back","average":{"1min":0.44900000000000001,"5min":0.44900000000000001,"15min":0.44900000000000001},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.624},{"interface":"front","average":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"min":{"1min":0.29299999999999998,"5min":0.29299999999999998,"15min":0.29299999999999998},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.36799999999999999}]},{"osd":6,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.55300000000000005},{"interface":"front","average":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"min":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"max":{"1min":0.82899999999999996,"5min":0.82899999999999996,"15min":0.82899999999999996},"last":0.57099999999999995}]},{"osd":7,"last update":"Tue Sep 17 08:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.59799999999999998},{"interface":"front","average":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.47999999999999998}]}]},{"osd":2,"up_from":20,"seq":85899345942,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":464,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":475136,"data_stored":191181,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 08:34:28 2024","interfaces":[{"interface":"back","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.19400000000000001,"5min":0.19400000000000001,"15min":0.19400000000000001},"max":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"last":0.29999999999999999},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.22800000000000001,"5min":0.22800000000000001,"15min":0.22800000000000001},"max":{"1min":0.61099999999999999,"5min":0.61099999999999999,"15min":0.61099999999999999},"last":0.54900000000000004}]},{"osd":1,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.76700000000000002,"5min":0.76700000000000002,"15min":0.76700000000000002},"last":0.442},{"interface":"front","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.42899999999999999}]},{"osd":3,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.53500000000000003},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.78000000000000003,"5min":0.78000000000000003,"15min":0.78000000000000003},"last":0.39000000000000001}]},{"osd":4,"last update":"Tue Sep 17 08:34:34 2024","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.217,"5min":0.217,"15min":0.217},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.48899999999999999},{"interface":"front","average":{"1min":0.45400000000000001,"5min":0.45400000000000001,"15min":0.45400000000000001},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.40699999999999997}]},{"osd":5,"last update":"Tue Sep 17 08:34:52 2024","interfaces":[{"interface":"back","average":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.58299999999999996},{"interface":"front","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.41299999999999998,"5min":0.41299999999999998,"15min":0.41299999999999998},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.51400000000000001}]},{"osd":6,"last update":"Tue Sep 17 08:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.70799999999999996,"5min":0.70799999999999996,"15min":0.70799999999999996},"last":0.34999999999999998},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.47499999999999998}]},{"osd":7,"last update":"Tue Sep 17 08:35:01 2024","interfaces":[{"interface":"back","average":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"min":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.73699999999999999,"5min":0.73699999999999999,"15min":0.73699999999999999},"last":0.45900000000000002},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.61399999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476760,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28072,"kb_used_data":1044,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93712984,"statfs":{"total":95990841344,"available":95962095616,"internally_reserved":0,"allocated":1069056,"data_stored":781549,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 08:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.47099999999999997,"5min":0.47099999999999997,"15min":0.47099999999999997},"min":{"1min":0.29099999999999998,"5min":0.29099999999999998,"15min":0.29099999999999998},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.72199999999999998},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.54600000000000004}]},{"osd":2,"last update":"Tue Sep 17 08:34:31 2024","interfaces":[{"interface":"back","average":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"min":{"1min":0.215,"5min":0.215,"15min":0.215},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.37},{"interface":"front","average":{"1min":0.32500000000000001,"5min":0.32500000000000001,"15min":0.32500000000000001},"min":{"1min":0.214,"5min":0.214,"15min":0.214},"max":{"1min":0.495,"5min":0.495,"15min":0.495},"last":0.38600000000000001}]},{"osd":3,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.65800000000000003,"5min":0.65800000000000003,"15min":0.65800000000000003},"last":0.67100000000000004},{"interface":"front","average":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.57899999999999996}]},{"osd":4,"last update":"Tue Sep 17 08:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"last":0.32900000000000001},{"interface":"front","average":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"min":{"1min":0.253,"5min":0.253,"15min":0.253},"max":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"last":0.34699999999999998}]},{"osd":5,"last update":"Tue Sep 17 08:34:48 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.66400000000000003,"5min":0.66400000000000003,"15min":0.66400000000000003},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.51200000000000001}]},{"osd":6,"last update":"Tue Sep 17 08:34:40 2024","interfaces":[{"interface":"back","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.59899999999999998,"5min":0.59899999999999998,"15min":0.59899999999999998},"last":0.42199999999999999},{"interface":"front","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":0.63100000000000001,"5min":0.63100000000000001,"15min":0.63100000000000001},"last":0.39900000000000002}]},{"osd":7,"last update":"Tue Sep 17 08:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.70099999999999996},{"interface":"front","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"last":0.65800000000000003}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T08:35:08.978 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T08:35:08.978 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T08:35:08.978 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T08:35:08.979 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T08:35:09.183 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:09.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:08 smithi062 ceph-mon[25840]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:09.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:08 smithi077 ceph-mon[35734]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:10.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:09 smithi062 ceph-mon[25840]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:35:10.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:09 smithi077 ceph-mon[35734]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:35:11.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:10 smithi077 ceph-mon[35734]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:11.069 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:11.070 INFO:teuthology.orchestra.run.smithi062.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T08:35:11.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:10 smithi062 ceph-mon[25840]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:11.733 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T08:35:11.733 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T08:35:11.733 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:35:11.743 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:11.744 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T08:35:11.953 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:12.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:11 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/615559935' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T08:35:12.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:11 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/615559935' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T08:35:13.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:12 smithi062 ceph-mon[25840]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:12 smithi077 ceph-mon[35734]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:13.878 INFO:teuthology.orchestra.run.smithi062.stdout:Backend: cephadm 2024-09-17T08:35:13.878 INFO:teuthology.orchestra.run.smithi062.stdout:Available: Yes 2024-09-17T08:35:13.878 INFO:teuthology.orchestra.run.smithi062.stdout:Paused: No 2024-09-17T08:35:14.583 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T08:35:14.792 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:15.218 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:14 smithi062 ceph-mon[25840]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:15.218 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:14 smithi062 ceph-mon[25840]: from='client.14546 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:15.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:14 smithi077 ceph-mon[35734]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:14 smithi077 ceph-mon[35734]: from='client.14546 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:16.581 INFO:teuthology.orchestra.run.smithi062.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:35:16.581 INFO:teuthology.orchestra.run.smithi062.stdout:alertmanager.smithi062 smithi062 *:9093,9094 running (2m) 71s ago 4m 26.0M - 0.25.0 c8568f914cd2 cdf6c1d4aa7f 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter.smithi062 smithi062 running (4m) 71s ago 4m 7168k - 18.2.4-855-g19e2a2be 980a0bfcd684 ae82577e4bc4 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter.smithi077 smithi077 running (3m) 78s ago 3m 7247k - 18.2.4-855-g19e2a2be 980a0bfcd684 0e618fe5b480 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:crash.smithi062 smithi062 running (4m) 71s ago 4m 6899k - 18.2.4-855-g19e2a2be 980a0bfcd684 a3028a6e0458 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:crash.smithi077 smithi077 running (3m) 78s ago 3m 6895k - 18.2.4-855-g19e2a2be 980a0bfcd684 a37422681b48 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:grafana.smithi062 smithi062 *:3000 running (2m) 71s ago 3m 77.2M - 9.4.7 954c08fa6188 893ebb1d8061 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:mgr.smithi062.kronsk smithi062 *:9283,8765,8443 running (5m) 71s ago 5m 481M - 18.2.4-855-g19e2a2be 980a0bfcd684 a7f5877bcd40 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:mgr.smithi077.hztgqn smithi077 *:8443,9283,8765 running (3m) 78s ago 3m 438M - 18.2.4-855-g19e2a2be 980a0bfcd684 7de7c36b7045 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:mon.smithi062 smithi062 running (5m) 71s ago 5m 47.5M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 ede0685b0ca8 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:mon.smithi077 smithi077 running (3m) 78s ago 3m 40.8M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 b670b94658b0 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter.smithi062 smithi062 *:9100 running (4m) 71s ago 4m 15.5M - 1.5.0 0da6a335fe13 eb4538d1a093 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter.smithi077 smithi077 *:9100 running (3m) 78s ago 3m 16.3M - 1.5.0 0da6a335fe13 8eeef2c336a2 2024-09-17T08:35:16.582 INFO:teuthology.orchestra.run.smithi062.stdout:osd.0 smithi077 running (119s) 78s ago 119s 39.4M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 25057d403c97 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.1 smithi062 running (111s) 71s ago 111s 39.5M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 6a20c993caf0 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.2 smithi077 running (114s) 78s ago 114s 38.1M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 0b39be73a6ad 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.3 smithi062 running (103s) 71s ago 102s 36.8M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 9d5f112c6747 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.4 smithi077 running (109s) 78s ago 109s 31.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 470859ff79ca 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.5 smithi062 running (94s) 71s ago 93s 38.8M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 479a7273b967 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.6 smithi077 running (104s) 78s ago 103s 33.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 33a6fa2ebf1c 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:osd.7 smithi062 running (85s) 71s ago 84s 24.8M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 4605060143d1 2024-09-17T08:35:16.583 INFO:teuthology.orchestra.run.smithi062.stdout:prometheus.smithi062 smithi062 *:9095 running (2m) 71s ago 3m 44.9M - 2.43.0 a07b618ecd1d 292d560bff69 2024-09-17T08:35:17.282 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:16 smithi062 ceph-mon[25840]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:17.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:16 smithi077 ceph-mon[35734]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:17.322 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T08:35:17.537 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:18.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:17 smithi062 ceph-mon[25840]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:18.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:17 smithi077 ceph-mon[35734]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:19.256 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:18 smithi062 ceph-mon[25840]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:19.256 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:19.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:18 smithi077 ceph-mon[35734]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:19.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:alertmanager ?:9093,9094 1/1 74s ago 4m count:1 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter 2/2 81s ago 5m * 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:crash 2/2 81s ago 5m * 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:grafana ?:3000 1/1 74s ago 5m count:1 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:mgr 2/2 81s ago 5m count:2 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:mon 2/2 81s ago 4m smithi062:172.21.15.62=smithi062;smithi077:172.21.15.77=smithi077;count:2 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter ?:9100 2/2 81s ago 4m * 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:osd.all-available-devices 8 81s ago 2m * 2024-09-17T08:35:19.433 INFO:teuthology.orchestra.run.smithi062.stdout:prometheus ?:9095 1/1 74s ago 5m count:1 2024-09-17T08:35:20.185 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T08:35:20.400 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:21.229 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:20 smithi062 ceph-mon[25840]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:21.229 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:20 smithi062 ceph-mon[25840]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:21.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:20 smithi077 ceph-mon[35734]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:21.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:20 smithi077 ceph-mon[35734]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:22.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:21 smithi062 ceph-mon[25840]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:22.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:21 smithi077 ceph-mon[35734]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:22.329 INFO:teuthology.orchestra.run.smithi062.stdout:HOST ADDR LABELS STATUS 2024-09-17T08:35:22.329 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 172.21.15.62 2024-09-17T08:35:22.329 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 172.21.15.77 2024-09-17T08:35:22.329 INFO:teuthology.orchestra.run.smithi062.stdout:2 hosts in cluster 2024-09-17T08:35:23.038 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T08:35:23.242 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:23.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:22 smithi062 ceph-mon[25840]: from='client.14558 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:23.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:22 smithi077 ceph-mon[35734]: from='client.14558 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:24.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:23 smithi062 ceph-mon[25840]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:24.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:23 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:35:24.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:23 smithi077 ceph-mon[35734]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:24.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:23 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT53440094400BGN 372G No 74s ago Has a FileSystem, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme1n1 ssd Linux_45fb94552deac6e9f3e1 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme2n1 ssd Linux_d0b4ab66f65aa7d6fb41 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme3n1 ssd Linux_fdc7b97ab3ff08762816 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme4n1 ssd Linux_0b1920eef28558989380 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400ZJ400BGN 372G No 82s ago Has a FileSystem, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme1n1 ssd Linux_7a62bf7323e6f2099424 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme2n1 ssd Linux_96bfc3529cd73a58c7e3 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.200 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme3n1 ssd Linux_f7e2f92e40d0b5ea08a0 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.201 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme4n1 ssd Linux_8992c4044953ff4c23f3 89.4G No 82s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:25.941 INFO:teuthology.run_tasks:Running task vip... 2024-09-17T08:35:25.950 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-17T08:35:25.951 INFO:tasks.vip:peername 172.21.15.62 2024-09-17T08:35:25.954 INFO:tasks.vip:172.21.15.62 in 172.21.0.0/20, pos 3901 2024-09-17T08:35:25.958 INFO:tasks.vip:smithi062.front.sepia.ceph.com static 10.0.15.62, vnet 10.0.0.0/16 2024-09-17T08:35:25.958 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-09-17T08:35:25.959 DEBUG:teuthology.orchestra.run.smithi062:> sudo ip route ls 2024-09-17T08:35:25.987 INFO:teuthology.orchestra.run.smithi062.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.62 metric 100 2024-09-17T08:35:25.987 INFO:teuthology.orchestra.run.smithi062.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.62 metric 100 2024-09-17T08:35:25.988 INFO:tasks.vip:Configuring 10.0.15.62 on smithi062.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T08:35:25.989 DEBUG:teuthology.orchestra.run.smithi062:> sudo ip addr add 10.0.15.62/16 dev enp3s0f1 2024-09-17T08:35:26.055 INFO:tasks.vip:peername 172.21.15.77 2024-09-17T08:35:26.058 INFO:tasks.vip:172.21.15.77 in 172.21.0.0/20, pos 3916 2024-09-17T08:35:26.062 INFO:tasks.vip:smithi077.front.sepia.ceph.com static 10.0.15.77, vnet 10.0.0.0/16 2024-09-17T08:35:26.062 DEBUG:teuthology.orchestra.run.smithi077:> sudo ip route ls 2024-09-17T08:35:26.089 INFO:teuthology.orchestra.run.smithi077.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.77 metric 100 2024-09-17T08:35:26.090 INFO:teuthology.orchestra.run.smithi077.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.77 metric 100 2024-09-17T08:35:26.091 INFO:tasks.vip:Configuring 10.0.15.77 on smithi077.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T08:35:26.092 DEBUG:teuthology.orchestra.run.smithi077:> sudo ip addr add 10.0.15.77/16 dev enp3s0f1 2024-09-17T08:35:26.158 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:35:26.166 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:26.167 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-17T08:35:26.466 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:27.112 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:26 smithi062 ceph-mon[25840]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:27.112 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:26 smithi062 ceph-mon[25840]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:27.112 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:27.112 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:26 smithi077 ceph-mon[35734]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:26 smithi077 ceph-mon[35734]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:28.885 INFO:teuthology.orchestra.run.smithi062.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T08:35:28.885 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT53440094400BGN 372G No 77s ago Has a FileSystem, LVM detected 2024-09-17T08:35:28.885 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme1n1 ssd Linux_45fb94552deac6e9f3e1 89.4G No 77s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.885 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme2n1 ssd Linux_d0b4ab66f65aa7d6fb41 89.4G No 77s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.885 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme3n1 ssd Linux_fdc7b97ab3ff08762816 89.4G No 77s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme4n1 ssd Linux_0b1920eef28558989380 89.4G No 77s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400ZJ400BGN 372G No 86s ago Has a FileSystem, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme1n1 ssd Linux_7a62bf7323e6f2099424 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme2n1 ssd Linux_96bfc3529cd73a58c7e3 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme3n1 ssd Linux_f7e2f92e40d0b5ea08a0 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:28.886 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme4n1 ssd Linux_8992c4044953ff4c23f3 89.4G No 86s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:35:29.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:28 smithi062 ceph-mon[25840]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:28 smithi077 ceph-mon[35734]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:29.542 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T08:35:29.557 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:29.557 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T08:35:29.587 INFO:teuthology.orchestra.run.smithi062.stderr:+ systemctl stop nfs-server 2024-09-17T08:35:29.595 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi077.front.sepia.ceph.com 2024-09-17T08:35:29.595 DEBUG:teuthology.orchestra.run.smithi077:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T08:35:29.626 INFO:teuthology.orchestra.run.smithi077.stderr:+ systemctl stop nfs-server 2024-09-17T08:35:29.634 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:35:29.642 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:29.643 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-17T08:35:30.272 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:30.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:29 smithi062 ceph-mon[25840]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:30.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:29 smithi077 ceph-mon[35734]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:31.053 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:30 smithi062 ceph-mon[25840]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:31.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:30 smithi077 ceph-mon[35734]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:33.042 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:32 smithi062 ceph-mon[25840]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:33.104 INFO:teuthology.orchestra.run.smithi062.stdout:Scheduled rgw.foorgw update... 2024-09-17T08:35:33.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:32 smithi077 ceph-mon[35734]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:34.085 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.62/16' 2024-09-17T08:35:34.308 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:34.420 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:34 smithi062 ceph-mon[25840]: from='client.14570 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:34.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:34 smithi062 ceph-mon[25840]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T08:35:34.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:34.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:34 smithi062 ceph-mon[25840]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:34.421 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:34.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:34 smithi077 ceph-mon[35734]: from='client.14570 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:34.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:34 smithi077 ceph-mon[35734]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T08:35:34.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:34.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:34 smithi077 ceph-mon[35734]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:34.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:35.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.418 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.419 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:35.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:36.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:36 smithi062 ceph-mon[25840]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:37.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:36 smithi077 ceph-mon[35734]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:37.733 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:37 smithi062 ceph-mon[25840]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.62/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:37.734 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:35:37.734 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:35:37.734 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:37 smithi062 ceph-mon[25840]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T08:35:37.734 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:37 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T08:35:38.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:37 smithi077 ceph-mon[35734]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.62/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:35:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T08:35:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T08:35:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:37 smithi077 ceph-mon[35734]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T08:35:38.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:37 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T08:35:38.469 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T08:35:38.479 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:38.479 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-17T08:35:38.508 INFO:teuthology.orchestra.run.smithi062.stderr:+ dnf install -y python3-boto3 2024-09-17T08:35:38.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: Saving service nfs.foo spec with placement count:1 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:38.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:38 smithi062 ceph-mon[25840]: pgmap v158: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:39.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: Saving service nfs.foo spec with placement count:1 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:39.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:38 smithi077 ceph-mon[35734]: pgmap v158: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:35:39.106 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:07:54 ago on Tue 17 Sep 2024 08:27:44 AM UTC. 2024-09-17T08:35:39.269 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-09-17T08:35:39.270 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-09-17T08:35:39.271 INFO:teuthology.orchestra.run.smithi062.stdout:Install 5 Packages 2024-09-17T08:35:39.271 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:39.371 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 6.6 M 2024-09-17T08:35:39.371 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 86 M 2024-09-17T08:35:39.371 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-09-17T08:35:40.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:39 smithi062 ceph-mon[25840]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T08:35:40.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:39 smithi062 ceph-mon[25840]: mgrmap e20: smithi062.kronsk(active, since 4m), standbys: smithi077.hztgqn 2024-09-17T08:35:40.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:39 smithi077 ceph-mon[35734]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T08:35:40.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:39 smithi077 ceph-mon[35734]: mgrmap e20: smithi062.kronsk(active, since 4m), standbys: smithi077.hztgqn 2024-09-17T08:35:40.096 INFO:teuthology.orchestra.run.smithi062.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 2.9 MB/s | 164 kB 00:00 2024-09-17T08:35:40.171 INFO:teuthology.orchestra.run.smithi062.stdout:(2/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 1.6 MB/s | 215 kB 00:00 2024-09-17T08:35:40.205 INFO:teuthology.orchestra.run.smithi062.stdout:(3/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 305 kB/s | 50 kB 00:00 2024-09-17T08:35:40.238 INFO:teuthology.orchestra.run.smithi062.stdout:(4/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 1.7 MB/s | 113 kB 00:00 2024-09-17T08:35:40.355 INFO:teuthology.orchestra.run.smithi062.stdout:(5/5): python3-botocore-1.31.62-2.el9.noarch.rp 24 MB/s | 6.1 MB 00:00 2024-09-17T08:35:40.357 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-09-17T08:35:40.357 INFO:teuthology.orchestra.run.smithi062.stdout:Total 6.7 MB/s | 6.6 MB 00:00 2024-09-17T08:35:40.380 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-09-17T08:35:40.391 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-09-17T08:35:40.391 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-09-17T08:35:40.498 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-09-17T08:35:40.498 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-09-17T08:35:40.763 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-09-17T08:35:40.872 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:41.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:40 smithi077 ceph-mon[35734]: pgmap v160: 33 pgs: 8 unknown, 25 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:41.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:41.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:40 smithi062 ceph-mon[25840]: pgmap v160: 33 pgs: 8 unknown, 25 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:42.262 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-17T08:35:42.391 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-17T08:35:42.479 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-17T08:35:42.551 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T08:35:43.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:42 smithi077 ceph-mon[35734]: pgmap v161: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:43.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:42 smithi062 ceph-mon[25840]: pgmap v161: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:43.730 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T08:35:43.731 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-17T08:35:43.731 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-17T08:35:43.731 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-17T08:35:43.731 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-17T08:35:44.055 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:35:44.056 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-09-17T08:35:44.308 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:35:44.373 INFO:teuthology.orchestra.run.smithi062.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-17T08:35:44.556 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:35:44.616 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:35:44.731 INFO:teuthology.orchestra.run.smithi062.stderr:Using ceph image with id '980a0bfcd684' and tag '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' created on 2024-09-16 16:31:12 +0000 UTC 2024-09-17T08:35:44.731 INFO:teuthology.orchestra.run.smithi062.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T08:35:45.106 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:44 smithi062 ceph-mon[25840]: pgmap v162: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:45.200 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:44 smithi077 ceph-mon[35734]: pgmap v162: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:47.268 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:46 smithi077 ceph-mon[35734]: pgmap v163: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:47.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:46 smithi062 ceph-mon[25840]: pgmap v163: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:48.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:47 smithi062 ceph-mon[25840]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T08:35:48.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:47 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T08:35:48.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:47 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T08:35:48.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:47 smithi062 ceph-mon[25840]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T08:35:48.096 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:47 smithi077 ceph-mon[35734]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T08:35:48.097 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:47 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T08:35:48.097 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:47 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T08:35:48.097 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:47 smithi077 ceph-mon[35734]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T08:35:49.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: pgmap v165: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:49.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T08:35:49.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:49.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:49.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T08:35:49.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:48 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T08:35:49.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: pgmap v165: 65 pgs: 32 unknown, 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:35:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T08:35:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:35:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T08:35:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:48 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi077.rcpnsu", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi077.rcpnsu", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:50.507 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T08:35:50.508 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:50 smithi077 ceph-mon[35734]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi077.rcpnsu", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi077.rcpnsu", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T08:35:50.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:50 smithi062 ceph-mon[25840]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T08:35:51.536 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:51 smithi077 ceph-mon[35734]: Deploying daemon rgw.foorgw.smithi077.rcpnsu on smithi077 2024-09-17T08:35:51.536 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:51 smithi077 ceph-mon[35734]: pgmap v168: 97 pgs: 13 creating+peering, 26 unknown, 58 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 682 B/s wr, 1 op/s 2024-09-17T08:35:51.536 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:51 smithi077 ceph-mon[35734]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T08:35:51.536 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:51 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T08:35:51.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:51 smithi062 ceph-mon[25840]: Deploying daemon rgw.foorgw.smithi077.rcpnsu on smithi077 2024-09-17T08:35:51.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:51 smithi062 ceph-mon[25840]: pgmap v168: 97 pgs: 13 creating+peering, 26 unknown, 58 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 682 B/s wr, 1 op/s 2024-09-17T08:35:51.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:51 smithi062 ceph-mon[25840]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T08:35:51.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:51 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi062.mthwaj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi062.mthwaj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: Deploying daemon rgw.foorgw.smithi062.mthwaj on smithi062 2024-09-17T08:35:53.156 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: pgmap v171: 129 pgs: 17 creating+peering, 36 unknown, 76 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 1 op/s 2024-09-17T08:35:53.157 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T08:35:53.157 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:52 smithi062 ceph-mon[25840]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T08:35:53.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi062.mthwaj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi062.mthwaj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: Deploying daemon rgw.foorgw.smithi062.mthwaj on smithi062 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: pgmap v171: 129 pgs: 17 creating+peering, 36 unknown, 76 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1023 B/s wr, 1 op/s 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2790327763' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T08:35:53.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:52 smithi077 ceph-mon[35734]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T08:35:54.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:53 smithi077 ceph-mon[35734]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T08:35:54.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:53 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:54.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:53 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/2807475074' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:54.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:53 smithi077 ceph-mon[35734]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:54.194 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:53 smithi062 ceph-mon[25840]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T08:35:54.194 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:53 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:54.194 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:53 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2807475074' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:54.194 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:53 smithi062 ceph-mon[25840]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T08:35:55.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: pgmap v174: 161 pgs: 29 creating+peering, 43 unknown, 89 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-09-17T08:35:55.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T08:35:55.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.77:0/2807475074' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T08:35:55.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:55.302 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:54 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:55.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: pgmap v174: 161 pgs: 29 creating+peering, 43 unknown, 89 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='client.? 172.21.15.77:0/2807475074' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.312 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 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-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi062.fckryn-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T08:35:55.313 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:54 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:35:56.231 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Creating key for client.nfs.foo.0.0.smithi062.fckryn 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Rados config object exists: conf-nfs.foo 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Creating key for client.nfs.foo.0.0.smithi062.fckryn-rgw 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Bind address in nfs.foo.0.0.smithi062.fckryn's ganesha conf is defaulting to empty 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: Deploying daemon nfs.foo.0.0.smithi062.fckryn on smithi062 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:35:56.232 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:55 smithi062 ceph-mon[25840]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T08:35:56.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Creating key for client.nfs.foo.0.0.smithi062.fckryn 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Rados config object exists: conf-nfs.foo 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Creating key for client.nfs.foo.0.0.smithi062.fckryn-rgw 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Bind address in nfs.foo.0.0.smithi062.fckryn's ganesha conf is defaulting to empty 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: Deploying daemon nfs.foo.0.0.smithi062.fckryn on smithi062 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: from='client.? ' entity='client.rgw.foorgw.smithi077.rcpnsu' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/2301702067' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:35:56.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:55 smithi077 ceph-mon[35734]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T08:35:56.767 INFO:teuthology.run_tasks:Running task python... 2024-09-17T08:35:56.777 INFO:tasks.python:Running python on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:35:56.778 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-17T08:35:56.778 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T08:35:57.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:56 smithi062 ceph-mon[25840]: pgmap v177: 161 pgs: 24 creating+peering, 2 unknown, 135 active+clean; 579 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 57 KiB/s rd, 2.5 KiB/s wr, 109 op/s 2024-09-17T08:35:57.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:56 smithi062 ceph-mon[25840]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T08:35:57.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:56 smithi062 ceph-mon[25840]: Cluster is now healthy 2024-09-17T08:35:57.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:56 smithi077 ceph-mon[35734]: pgmap v177: 161 pgs: 24 creating+peering, 2 unknown, 135 active+clean; 579 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 57 KiB/s rd, 2.5 KiB/s wr, 109 op/s 2024-09-17T08:35:57.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:56 smithi077 ceph-mon[35734]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T08:35:57.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:56 smithi077 ceph-mon[35734]: Cluster is now healthy 2024-09-17T08:35:59.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: Filtered out host smithi077: Host has no interface available for VIP: 10.0.31.62/16 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: Deploying daemon haproxy.nfs.foo.smithi062.vcisqc on smithi062 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: pgmap v178: 161 pgs: 20 creating+peering, 141 active+clean; 579 KiB data, 218 MiB used, 715 GiB / 715 GiB avail; 64 KiB/s rd, 2.4 KiB/s wr, 125 op/s 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T08:35:59.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:58 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T08:35:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: Filtered out host smithi077: Host has no interface available for VIP: 10.0.31.62/16 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: Deploying daemon haproxy.nfs.foo.smithi062.vcisqc on smithi062 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: pgmap v178: 161 pgs: 20 creating+peering, 141 active+clean; 579 KiB data, 218 MiB used, 715 GiB / 715 GiB avail; 64 KiB/s rd, 2.4 KiB/s wr, 125 op/s 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T08:35:59.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:58 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T08:36:00.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:59 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:00.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:59 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T08:36:00.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:59 smithi062 ceph-mon[25840]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T08:36:00.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:35:59 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:36:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:59 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:59 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T08:36:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:59 smithi077 ceph-mon[35734]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T08:36:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:35:59 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T08:36:01.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:00 smithi062 ceph-mon[25840]: pgmap v181: 193 pgs: 19 creating+peering, 9 unknown, 165 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 182 KiB/s rd, 6.3 KiB/s wr, 353 op/s 2024-09-17T08:36:01.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:00 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:36:01.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:00 smithi062 ceph-mon[25840]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T08:36:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:00 smithi077 ceph-mon[35734]: pgmap v181: 193 pgs: 19 creating+peering, 9 unknown, 165 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 182 KiB/s rd, 6.3 KiB/s wr, 353 op/s 2024-09-17T08:36:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:00 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/1934397226' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T08:36:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:00 smithi077 ceph-mon[35734]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T08:36:02.122 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:01 smithi062 ceph-mon[25840]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T08:36:02.123 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:01 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T08:36:02.123 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:01 smithi062 ceph-mon[25840]: pgmap v184: 225 pgs: 24 creating+peering, 27 unknown, 174 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 179 KiB/s rd, 7.7 KiB/s wr, 346 op/s 2024-09-17T08:36:02.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:01 smithi077 ceph-mon[35734]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T08:36:02.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:01 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T08:36:02.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:01 smithi077 ceph-mon[35734]: pgmap v184: 225 pgs: 24 creating+peering, 27 unknown, 174 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 179 KiB/s rd, 7.7 KiB/s wr, 346 op/s 2024-09-17T08:36:03.088 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:36:03.097 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:36:03.097 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-17T08:36:03.246 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:02 smithi062 ceph-mon[25840]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T08:36:03.246 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:02 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T08:36:03.246 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:02 smithi062 ceph-mon[25840]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T08:36:03.246 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:02 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T08:36:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:02 smithi077 ceph-mon[35734]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T08:36:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:02 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T08:36:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:02 smithi077 ceph-mon[35734]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T08:36:03.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:02 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T08:36:03.438 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:03 smithi062 ceph-mon[25840]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T08:36:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:03 smithi062 ceph-mon[25840]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T08:36:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:04.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:03 smithi062 ceph-mon[25840]: pgmap v187: 225 pgs: 15 creating+peering, 19 unknown, 191 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 2.2 KiB/s wr, 9 op/s 2024-09-17T08:36:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:03 smithi077 ceph-mon[35734]: from='client.? 172.21.15.62:0/434557755' entity='client.rgw.foorgw.smithi062.mthwaj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T08:36:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:03 smithi077 ceph-mon[35734]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T08:36:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:03 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:03 smithi077 ceph-mon[35734]: pgmap v187: 225 pgs: 15 creating+peering, 19 unknown, 191 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 2.2 KiB/s wr, 9 op/s 2024-09-17T08:36:05.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: Cluster is now healthy 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:36:05.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:04 smithi062 ceph-mon[25840]: Deploying daemon keepalived.nfs.foo.smithi062.jyvvvs on smithi062 2024-09-17T08:36:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T08:36:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: Cluster is now healthy 2024-09-17T08:36:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:05.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:36:05.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:04 smithi077 ceph-mon[35734]: Deploying daemon keepalived.nfs.foo.smithi062.jyvvvs on smithi062 2024-09-17T08:36:06.255 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:06 smithi062 ceph-mon[25840]: pgmap v188: 225 pgs: 5 creating+peering, 220 active+clean; 582 KiB data, 227 MiB used, 715 GiB / 715 GiB avail; 3.1 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout: "bind": "/foobucket", 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout: "cluster": "foo", 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout: "mode": "RW", 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout: "path": "foobucket", 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout: "squash": "none" 2024-09-17T08:36:06.256 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-09-17T08:36:06.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:06 smithi077 ceph-mon[35734]: pgmap v188: 225 pgs: 5 creating+peering, 220 active+clean; 582 KiB data, 227 MiB used, 715 GiB / 715 GiB avail; 3.1 KiB/s rd, 2.0 KiB/s wr, 9 op/s 2024-09-17T08:36:07.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:07 smithi062 ceph-mon[25840]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:36:07.217 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T08:36:07.228 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-17T08:36:07.228 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:07.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:07 smithi077 ceph-mon[35734]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:36:07.493 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:08.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:08 smithi062 ceph-mon[25840]: pgmap v189: 225 pgs: 225 active+clean; 582 KiB data, 227 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 890 B/s wr, 5 op/s 2024-09-17T08:36:08.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:08 smithi077 ceph-mon[35734]: pgmap v189: 225 pgs: 225 active+clean; 582 KiB data, 227 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 890 B/s wr, 5 op/s 2024-09-17T08:36:11.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:10 smithi062 ceph-mon[25840]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 895 B/s wr, 17 op/s 2024-09-17T08:36:11.136 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:11.136 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:35:34.273996Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:35:25.910783Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:35:25.910875Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:35:34.274055Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:04.912599Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:35:25.911019Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:35:25.911088Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:35:57.615213Z 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-17T08:35:37.708735Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:35:25.910948Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:35:25.911189Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:35:34.274113Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T08:36:11.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:10 smithi077 ceph-mon[35734]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 895 B/s wr, 17 op/s 2024-09-17T08:36:12.376 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T08:36:12.990 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:12 smithi062 ceph-mon[25840]: from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:12.990 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:12 smithi062 ceph-mon[25840]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 724 B/s wr, 17 op/s 2024-09-17T08:36:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:12 smithi077 ceph-mon[35734]: from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:12 smithi077 ceph-mon[35734]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 724 B/s wr, 17 op/s 2024-09-17T08:36:13.377 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:13.867 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 658 B/s wr, 15 op/s 2024-09-17T08:36:14.434 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 9.8 KiB/s rd, 658 B/s wr, 15 op/s 2024-09-17T08:36:14.558 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:16 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.301 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:16 smithi062 ceph-mon[25840]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 426 B/s wr, 13 op/s 2024-09-17T08:36:16.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.560 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:16 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:16.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:16 smithi077 ceph-mon[35734]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 426 B/s wr, 13 op/s 2024-09-17T08:36:18.638 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:18.639 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:35:34.273996Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:35:34.273811Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:35:34.273872Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:35:34.274055Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:13.144672Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:35:34.273741Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:35:34.273602Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:35:57.615213Z 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-17T08:35:37.708735Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:35:34.273934Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:35:34.274181Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:35:34.274113Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T08:36:19.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:18 smithi062 ceph-mon[25840]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 170 B/s wr, 11 op/s 2024-09-17T08:36:19.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:19.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:19.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:18 smithi077 ceph-mon[35734]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 170 B/s wr, 11 op/s 2024-09-17T08:36:19.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:19.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:20.005 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T08:36:20.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:19 smithi062 ceph-mon[25840]: from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:20.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:20.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:19 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:20.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:19 smithi077 ceph-mon[35734]: from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:20.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:20.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:19 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:21.006 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:21.212 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:20 smithi077 ceph-mon[35734]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 170 B/s wr, 11 op/s 2024-09-17T08:36:21.240 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:20 smithi062 ceph-mon[25840]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.5 KiB/s rd, 170 B/s wr, 11 op/s 2024-09-17T08:36:21.579 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:23.019 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:22 smithi062 ceph-mon[25840]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 0 B/s wr, 2 op/s 2024-09-17T08:36:23.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:22 smithi077 ceph-mon[35734]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 0 B/s wr, 2 op/s 2024-09-17T08:36:23.996 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:23.996 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:35:34.273996Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:35:34.273811Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:35:34.273872Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:35:34.274055Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:13.144672Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:35:34.273741Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:35:34.273602Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:35:57.615213Z 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-17T08:35:37.708735Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:35:34.273934Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:35:34.274181Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:35:34.274113Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T08:36:24.785 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T08:36:25.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:24 smithi062 ceph-mon[25840]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:25.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:24 smithi077 ceph-mon[35734]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:25.786 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:26.144 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:26.267 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:25 smithi062 ceph-mon[25840]: from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:26.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:25 smithi077 ceph-mon[35734]: from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:27.198 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:26 smithi062 ceph-mon[25840]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:26 smithi077 ceph-mon[35734]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:28.611 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:28.612 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:15.243846Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:15.243932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:13.144672Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "last_refresh": "2024-09-17T08:36:28.142698Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:15.244059Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:15.244120Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:15.243996Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:15.244178Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:29.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:29.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:36:29.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:36:29.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:36:29.260 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:28 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.281 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-17T08:36:29.281 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T08:36:29.291 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-17T08:36:29.292 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:36:29.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:36:29.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:28 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:29.504 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:30.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:29 smithi062 ceph-mon[25840]: Checking dashboard <-> RGW credentials 2024-09-17T08:36:30.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:29 smithi062 ceph-mon[25840]: Deploying daemon haproxy.nfs.foo.smithi077.wppdmc on smithi077 2024-09-17T08:36:30.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:29 smithi062 ceph-mon[25840]: from='client.24441 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:30.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:29 smithi077 ceph-mon[35734]: Checking dashboard <-> RGW credentials 2024-09-17T08:36:30.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:29 smithi077 ceph-mon[35734]: Deploying daemon haproxy.nfs.foo.smithi077.wppdmc on smithi077 2024-09-17T08:36:30.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:29 smithi077 ceph-mon[35734]: from='client.24441 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:31.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:30 smithi062 ceph-mon[25840]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T08:36:31.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:30 smithi077 ceph-mon[35734]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T08:36:31.489 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:31.489 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:15.243846Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:15.243932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:13.144672Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "last_refresh": "2024-09-17T08:36:28.142698Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:15.244059Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:15.244120Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:15.243996Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:15.244178Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:32.164 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-17T08:36:33.165 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:33.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:32 smithi062 ceph-mon[25840]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:33.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:32 smithi062 ceph-mon[25840]: pgmap v201: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T08:36:33.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:32 smithi077 ceph-mon[35734]: from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:33.300 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:32 smithi077 ceph-mon[35734]: pgmap v201: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T08:36:33.388 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:34.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]: dispatch 2024-09-17T08:36:34.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]: dispatch 2024-09-17T08:36:34.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:33 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:34.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]: dispatch 2024-09-17T08:36:34.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]: dispatch 2024-09-17T08:36:34.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:33 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:35.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:34 smithi062 ceph-mon[25840]: pgmap v202: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T08:36:35.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]': finished 2024-09-17T08:36:35.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:34 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]': finished 2024-09-17T08:36:35.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:34 smithi062 ceph-mon[25840]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T08:36:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:34 smithi077 ceph-mon[35734]: pgmap v202: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T08:36:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1b", "id": [4, 6]}]': finished 2024-09-17T08:36:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:34 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.2", "id": [5, 3]}]': finished 2024-09-17T08:36:35.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:34 smithi077 ceph-mon[35734]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T08:36:35.350 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:35.350 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:15.243846Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:15.243932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:35.010161Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:15.244059Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:15.244120Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:15.243996Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:15.244178Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:36.035 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: osdmap e66: 8 total, 8 up, 8 in 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: 10.0.31.62 is in 10.0.0.0/16 on smithi077 interface enp3s0f1 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: Deploying daemon keepalived.nfs.foo.smithi077.pbahvv on smithi077 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:36.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:35 smithi062 ceph-mon[25840]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 2 op/s 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: osdmap e66: 8 total, 8 up, 8 in 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: 10.0.31.62 is in 10.0.0.0/16 on smithi077 interface enp3s0f1 2024-09-17T08:36:36.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:36:36.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: Deploying daemon keepalived.nfs.foo.smithi077.pbahvv on smithi077 2024-09-17T08:36:36.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:36.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:35 smithi077 ceph-mon[35734]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 2 op/s 2024-09-17T08:36:37.036 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:37.261 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:39.135 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:39.135 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:15.243846Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:15.243932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:35.010161Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:15.244059Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:15.244120Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:15.243996Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:15.244178Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:39.281 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:38 smithi077 ceph-mon[35734]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 127 B/s wr, 0 op/s 2024-09-17T08:36:39.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:38 smithi062 ceph-mon[25840]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 127 B/s wr, 0 op/s 2024-09-17T08:36:39.758 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-17T08:36:40.759 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:40.985 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:41.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:40 smithi062 ceph-mon[25840]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:41.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:40 smithi062 ceph-mon[25840]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T08:36:41.220 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:40 smithi077 ceph-mon[35734]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:41.221 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:40 smithi077 ceph-mon[35734]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T08:36:42.821 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:42.822 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:15.243846Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:15.243932Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:42.076293Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:15.244059Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:15.244120Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:15.243996Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:15.244178Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:15.244434Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:42 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:36:43.258 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T08:36:43.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:43.259 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:42 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:36:43.555 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-17T08:36:44.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:43 smithi062 ceph-mon[25840]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:44.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:43 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:43 smithi077 ceph-mon[35734]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:44.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:43 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:44.556 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T08:36:44.956 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:45.216 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:44 smithi062 ceph-mon[25840]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-09-17T08:36:45.261 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:44 smithi077 ceph-mon[35734]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-09-17T08:36:46.799 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:46.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:46 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:46.800 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:46 smithi062 ceph-mon[25840]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-09-17T08:36:46.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:46 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:46.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:46 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:46.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:46 smithi077 ceph-mon[35734]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-09-17T08:36:47.483 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-09-17T08:36:47.483 INFO:teuthology.orchestra.run.smithi062.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T08:30:21.180585Z", "last_refresh": "2024-09-17T08:36:28.142163Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:49.126132Z 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-17T08:30:15.444821Z", "last_refresh": "2024-09-17T08:36:28.141966Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:31:52.418362Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T08:30:13.898964Z", "last_refresh": "2024-09-17T08:36:28.142039Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T08:30:18.753603Z", "last_refresh": "2024-09-17T08:36:28.142221Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:36:42.076293Z 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.62/16"}, "status": {"created": "2024-09-17T08:35:37.713122Z", "last_refresh": "2024-09-17T08:36:28.142698Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.62/16"}}, {"events": ["2024-09-17T08:32:00.926017Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T08:30:12.684778Z", "last_refresh": "2024-09-17T08:36:28.141902Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:10.713326Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi062:172.21.15.62=smithi062", "smithi077:172.21.15.77=smithi077"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T08:31:03.951394Z", "last_refresh": "2024-09-17T08:36:28.141821Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T08:36:28.481993Z 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-17T08:35:37.708735Z", "last_refresh": "2024-09-17T08:36:28.142640Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:31:57.048544Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T08:30:19.968694Z", "last_refresh": "2024-09-17T08:36:28.142104Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T08:32:21.416996Z 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-17T08:32:21.411871Z", "last_refresh": "2024-09-17T08:36:28.142336Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T08:32:10.718559Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T08:30:16.886892Z", "last_refresh": "2024-09-17T08:36:28.142280Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T08:35:54.406089Z 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-17T08:35:54.397309Z", "last_refresh": "2024-09-17T08:36:28.142582Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T08:36:48.204 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-17T08:36:48.204 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T08:36:48.215 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:36:48.215 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-17T08:36:48.242 INFO:teuthology.orchestra.run.smithi062.stderr:+ mkdir /mnt/foo 2024-09-17T08:36:48.255 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-17T08:36:48.321 INFO:teuthology.orchestra.run.smithi062.stderr:+ sleep 5 2024-09-17T08:36:49.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:48 smithi062 ceph-mon[25840]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:48 smithi062 ceph-mon[25840]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:49.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:48 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:49.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:48 smithi077 ceph-mon[35734]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T08:36:49.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:48 smithi077 ceph-mon[35734]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:49.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:48 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:36:51.289 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:50 smithi062 ceph-mon[25840]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:51.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:50 smithi077 ceph-mon[35734]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:52.967 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:36:52.968 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:52 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:53.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:53.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:36:53.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:52 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:36:53.325 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.62:/foobucket /mnt/foo' 2024-09-17T08:36:53.391 INFO:teuthology.orchestra.run.smithi062.stderr:+ mount -t nfs 10.0.31.62:/foobucket /mnt/foo 2024-09-17T08:36:53.907 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:53 smithi062 ceph-mon[25840]: Reconfiguring prometheus.smithi062 (dependencies changed)... 2024-09-17T08:36:53.907 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:53 smithi062 ceph-mon[25840]: Reconfiguring daemon prometheus.smithi062 on smithi062 2024-09-17T08:36:54.055 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-17T08:36:54.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:53 smithi077 ceph-mon[35734]: Reconfiguring prometheus.smithi062 (dependencies changed)... 2024-09-17T08:36:54.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:53 smithi077 ceph-mon[35734]: Reconfiguring daemon prometheus.smithi062 on smithi062 2024-09-17T08:36:54.122 INFO:teuthology.orchestra.run.smithi062.stderr:+ find /mnt/foo -ls 2024-09-17T08:36:54.126 INFO:teuthology.orchestra.run.smithi062.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 17 08:36 /mnt/foo 2024-09-17T08:36:54.126 INFO:teuthology.orchestra.run.smithi062.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 17 08:36 /mnt/foo/myobject 2024-09-17T08:36:54.128 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-17T08:36:54.194 INFO:teuthology.orchestra.run.smithi062.stderr:+ grep thebody /mnt/foo/myobject 2024-09-17T08:36:54.198 INFO:teuthology.orchestra.run.smithi062.stdout:thebody 2024-09-17T08:36:54.200 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-17T08:36:54.264 INFO:teuthology.orchestra.run.smithi062.stderr:+ echo test 2024-09-17T08:36:54.280 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-17T08:36:54.344 INFO:teuthology.orchestra.run.smithi062.stderr:+ sync 2024-09-17T08:36:54.695 INFO:teuthology.run_tasks:Running task python... 2024-09-17T08:36:54.708 INFO:tasks.python:Running python on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:36:54.708 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-17T08:36:54.708 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T08:36:54.996 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:54 smithi062 ceph-mon[25840]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:55.024 INFO:teuthology.orchestra.run.smithi062.stdout:b'test\n' 2024-09-17T08:36:55.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:54 smithi077 ceph-mon[35734]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T08:36:55.075 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T08:36:55.086 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:36:55.086 DEBUG:teuthology.orchestra.run.smithi062:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-17T08:36:55.110 INFO:teuthology.orchestra.run.smithi062.stderr:+ umount /mnt/foo 2024-09-17T08:36:55.126 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:36:55.136 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:36:55.137 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-17T08:36:55.750 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:36:57.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:56 smithi062 ceph-mon[25840]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 597 B/s rd, 85 B/s wr, 0 op/s 2024-09-17T08:36:57.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:56 smithi077 ceph-mon[35734]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 597 B/s rd, 85 B/s wr, 0 op/s 2024-09-17T08:36:58.808 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-17T08:36:59.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:58 smithi062 ceph-mon[25840]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-17T08:36:59.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:58 smithi077 ceph-mon[35734]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-17T08:36:59.358 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:00.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:59 smithi062 ceph-mon[25840]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:00.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:59 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:00.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:36:59 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:00.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:59 smithi077 ceph-mon[35734]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:00.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:59 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:00.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:36:59 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:01.115 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:00 smithi062 ceph-mon[25840]: Reconfiguring keepalived.nfs.foo.smithi062.jyvvvs (dependencies changed)... 2024-09-17T08:37:01.115 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:00 smithi062 ceph-mon[25840]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:37:01.115 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:00 smithi062 ceph-mon[25840]: 10.0.31.62 is in 10.0.0.0/16 on smithi077 interface enp3s0f1 2024-09-17T08:37:01.115 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:00 smithi062 ceph-mon[25840]: Reconfiguring daemon keepalived.nfs.foo.smithi062.jyvvvs on smithi062 2024-09-17T08:37:01.115 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:00 smithi062 ceph-mon[25840]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:01.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:00 smithi077 ceph-mon[35734]: Reconfiguring keepalived.nfs.foo.smithi062.jyvvvs (dependencies changed)... 2024-09-17T08:37:01.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:00 smithi077 ceph-mon[35734]: 10.0.31.62 is in 10.0.0.0/16 on smithi062 interface enp3s0f1 2024-09-17T08:37:01.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:00 smithi077 ceph-mon[35734]: 10.0.31.62 is in 10.0.0.0/16 on smithi077 interface enp3s0f1 2024-09-17T08:37:01.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:00 smithi077 ceph-mon[35734]: Reconfiguring daemon keepalived.nfs.foo.smithi062.jyvvvs on smithi062 2024-09-17T08:37:01.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:00 smithi077 ceph-mon[35734]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:02.673 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T08:37:02.684 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:37:02.684 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-17T08:37:02.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:02.810 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: Remove service ingress.nfs.foo 2024-09-17T08:37:02.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:02.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: Remove service nfs.foo 2024-09-17T08:37:02.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:02.811 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:02 smithi077 ceph-mon[35734]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:02.905 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:02.906 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: Remove service ingress.nfs.foo 2024-09-17T08:37:02.906 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:02.906 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: Remove service nfs.foo 2024-09-17T08:37:02.906 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:02.906 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:02 smithi062 ceph-mon[25840]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:02.981 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:04.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:03 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:37:04.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:03 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:37:05.044 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:04 smithi062 ceph-mon[25840]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:05.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:04 smithi077 ceph-mon[35734]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:05.492 INFO:teuthology.orchestra.run.smithi062.stdout:167 167 2024-09-17T08:37:06.154 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T08:37:06.795 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:07.154 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:06 smithi062 ceph-mon[25840]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:07.154 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:06 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:07.154 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:06 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:07.285 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:06 smithi077 ceph-mon[35734]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T08:37:07.285 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:06 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:07.285 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:06 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:08.210 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:07 smithi062 ceph-mon[25840]: Removing orphan daemon haproxy.nfs.foo.smithi077.wppdmc... 2024-09-17T08:37:08.211 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:07 smithi062 ceph-mon[25840]: Removing daemon haproxy.nfs.foo.smithi077.wppdmc from smithi077 -- ports [2049, 9049] 2024-09-17T08:37:08.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:07 smithi077 ceph-mon[35734]: Removing orphan daemon haproxy.nfs.foo.smithi077.wppdmc... 2024-09-17T08:37:08.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:07 smithi077 ceph-mon[35734]: Removing daemon haproxy.nfs.foo.smithi077.wppdmc from smithi077 -- ports [2049, 9049] 2024-09-17T08:37:08.643 INFO:teuthology.orchestra.run.smithi062.stdout:Backend: cephadm 2024-09-17T08:37:08.643 INFO:teuthology.orchestra.run.smithi062.stdout:Available: Yes 2024-09-17T08:37:08.643 INFO:teuthology.orchestra.run.smithi062.stdout:Paused: No 2024-09-17T08:37:09.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:08 smithi062 ceph-mon[25840]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 426 B/s wr, 10 op/s 2024-09-17T08:37:09.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:08 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi077.wppdmc"}]: dispatch 2024-09-17T08:37:09.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:08 smithi077 ceph-mon[35734]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 426 B/s wr, 10 op/s 2024-09-17T08:37:09.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:08 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi077.wppdmc"}]: dispatch 2024-09-17T08:37:09.320 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T08:37:09.530 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:10.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:09 smithi062 ceph-mon[25840]: Removing key for client.ingress.nfs.foo.smithi077.wppdmc 2024-09-17T08:37:10.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:09 smithi062 ceph-mon[25840]: Removing orphan daemon keepalived.nfs.foo.smithi077.pbahvv... 2024-09-17T08:37:10.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:09 smithi062 ceph-mon[25840]: Removing daemon keepalived.nfs.foo.smithi077.pbahvv from smithi077 -- ports [] 2024-09-17T08:37:10.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:09 smithi062 ceph-mon[25840]: from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:10.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:09 smithi077 ceph-mon[35734]: Removing key for client.ingress.nfs.foo.smithi077.wppdmc 2024-09-17T08:37:10.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:09 smithi077 ceph-mon[35734]: Removing orphan daemon keepalived.nfs.foo.smithi077.pbahvv... 2024-09-17T08:37:10.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:09 smithi077 ceph-mon[35734]: Removing daemon keepalived.nfs.foo.smithi077.pbahvv from smithi077 -- ports [] 2024-09-17T08:37:10.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:09 smithi077 ceph-mon[35734]: from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:11.019 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:10 smithi062 ceph-mon[25840]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 426 B/s wr, 9 op/s 2024-09-17T08:37:11.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:10 smithi077 ceph-mon[35734]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 426 B/s wr, 9 op/s 2024-09-17T08:37:11.425 INFO:teuthology.orchestra.run.smithi062.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:alertmanager.smithi062 smithi062 *:9093,9094 running (4m) 19s ago 6m 25.2M - 0.25.0 c8568f914cd2 cdf6c1d4aa7f 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter.smithi062 smithi062 running (6m) 19s ago 6m 7474k - 18.2.4-855-g19e2a2be 980a0bfcd684 ae82577e4bc4 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter.smithi077 smithi077 running (5m) 25s ago 5m 7499k - 18.2.4-855-g19e2a2be 980a0bfcd684 0e618fe5b480 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:crash.smithi062 smithi062 running (6m) 19s ago 6m 6899k - 18.2.4-855-g19e2a2be 980a0bfcd684 a3028a6e0458 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:crash.smithi077 smithi077 running (5m) 25s ago 5m 6895k - 18.2.4-855-g19e2a2be 980a0bfcd684 a37422681b48 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:grafana.smithi062 smithi062 *:3000 running (4m) 19s ago 5m 83.7M - 9.4.7 954c08fa6188 893ebb1d8061 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:haproxy.nfs.foo.smithi062.vcisqc smithi062 *:2049,9049 running (67s) 19s ago 66s 4366k - 2.3.17-d1c9119 e85424b0d443 a65a04d9fc2b 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:keepalived.nfs.foo.smithi062.jyvvvs smithi062 starting - - - - 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:keepalived.nfs.foo.smithi077.pbahvv smithi077 running (29s) 25s ago 29s 1770k - 2.2.4 4a3a1ff181d9 9be38ed6413d 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:mgr.smithi062.kronsk smithi062 *:9283,8765,8443 running (7m) 19s ago 7m 497M - 18.2.4-855-g19e2a2be 980a0bfcd684 a7f5877bcd40 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:mgr.smithi077.hztgqn smithi077 *:8443,9283,8765 running (5m) 25s ago 5m 439M - 18.2.4-855-g19e2a2be 980a0bfcd684 7de7c36b7045 2024-09-17T08:37:11.426 INFO:teuthology.orchestra.run.smithi062.stdout:mon.smithi062 smithi062 running (7m) 19s ago 7m 47.9M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 ede0685b0ca8 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:mon.smithi077 smithi077 running (5m) 25s ago 5m 36.4M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 b670b94658b0 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:nfs.foo.0.0.smithi062.fckryn smithi062 *:12049 running (74s) 19s ago 73s 98.7M - 5.5 980a0bfcd684 6ec1a735c88b 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter.smithi062 smithi062 *:9100 running (6m) 19s ago 6m 15.3M - 1.5.0 0da6a335fe13 eb4538d1a093 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter.smithi077 smithi077 *:9100 running (5m) 25s ago 5m 16.6M - 1.5.0 0da6a335fe13 8eeef2c336a2 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.0 smithi077 running (3m) 25s ago 3m 52.5M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 25057d403c97 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.1 smithi062 running (3m) 19s ago 3m 49.9M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 6a20c993caf0 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.2 smithi077 running (3m) 25s ago 3m 50.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 0b39be73a6ad 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.3 smithi062 running (3m) 19s ago 3m 51.3M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 9d5f112c6747 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.4 smithi077 running (3m) 25s ago 3m 48.6M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 470859ff79ca 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.5 smithi062 running (3m) 19s ago 3m 57.6M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 479a7273b967 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.6 smithi077 running (3m) 25s ago 3m 50.3M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 33a6fa2ebf1c 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:osd.7 smithi062 running (3m) 19s ago 3m 47.6M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 4605060143d1 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:prometheus.smithi062 smithi062 *:9095 starting - - - - 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:rgw.foorgw.smithi062.mthwaj smithi062 *:8800 running (77s) 19s ago 77s 75.0M - 18.2.4-855-g19e2a2be 980a0bfcd684 d61b0b749ea7 2024-09-17T08:37:11.427 INFO:teuthology.orchestra.run.smithi062.stdout:rgw.foorgw.smithi077.rcpnsu smithi077 *:8800 running (80s) 25s ago 79s 74.5M - 18.2.4-855-g19e2a2be 980a0bfcd684 857f7da1e254 2024-09-17T08:37:12.127 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T08:37:12.351 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:13.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:12 smithi062 ceph-mon[25840]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:13.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:12 smithi062 ceph-mon[25840]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T08:37:13.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi077.pbahvv"}]: dispatch 2024-09-17T08:37:13.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:37:13.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:12 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:37:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:12 smithi077 ceph-mon[35734]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:12 smithi077 ceph-mon[35734]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T08:37:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi077.pbahvv"}]: dispatch 2024-09-17T08:37:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:37:13.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:12 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T08:37:14.110 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:13 smithi062 ceph-mon[25840]: Removing key for client.ingress.nfs.foo.smithi077.pbahvv 2024-09-17T08:37:14.111 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:13 smithi062 ceph-mon[25840]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:37:14.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:13 smithi077 ceph-mon[35734]: Removing key for client.ingress.nfs.foo.smithi077.pbahvv 2024-09-17T08:37:14.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:13 smithi077 ceph-mon[35734]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T08:37:14.987 INFO:teuthology.orchestra.run.smithi062.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T08:37:14.987 INFO:teuthology.orchestra.run.smithi062.stdout:alertmanager ?:9093,9094 1/1 23s ago 6m count:1 2024-09-17T08:37:14.987 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-exporter 2/2 23s ago 6m * 2024-09-17T08:37:14.987 INFO:teuthology.orchestra.run.smithi062.stdout:crash 2/2 23s ago 7m * 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:grafana ?:3000 1/1 23s ago 6m count:1 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:ingress.nfs.foo 10.0.31.62:2049,9049 1/4 97s count:2 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:mgr 2/2 23s ago 7m count:2 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:mon 2/2 23s ago 6m smithi062:172.21.15.62=smithi062;smithi077:172.21.15.77=smithi077;count:2 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:nfs.foo ?:12049 1/1 97s count:1 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:node-exporter ?:9100 2/2 23s ago 6m * 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:osd.all-available-devices 8 23s ago 4m * 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:prometheus ?:9095 0/1 - 6m count:1 2024-09-17T08:37:14.988 INFO:teuthology.orchestra.run.smithi062.stdout:rgw.foorgw ?:8800 2/2 23s ago 80s count:2 2024-09-17T08:37:15.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:14 smithi062 ceph-mon[25840]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:37:15.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:15.300 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:14 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:15.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:14 smithi077 ceph-mon[35734]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:37:15.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:15.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:14 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:16.469 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T08:37:17.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:16 smithi062 ceph-mon[25840]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:17.007 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:16 smithi062 ceph-mon[25840]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:37:17.198 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:17.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:16 smithi077 ceph-mon[35734]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:17.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:16 smithi077 ceph-mon[35734]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T08:37:19.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:18 smithi062 ceph-mon[25840]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:19.236 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:18 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:37:19.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:18 smithi077 ceph-mon[35734]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:19.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:18 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T08:37:19.673 INFO:teuthology.orchestra.run.smithi062.stdout:HOST ADDR LABELS STATUS 2024-09-17T08:37:19.673 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 172.21.15.62 2024-09-17T08:37:19.673 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 172.21.15.77 2024-09-17T08:37:19.673 INFO:teuthology.orchestra.run.smithi062.stdout:2 hosts in cluster 2024-09-17T08:37:20.654 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T08:37:21.182 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:21.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:20 smithi062 ceph-mon[25840]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:21.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:20 smithi062 ceph-mon[25840]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:21.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:20 smithi077 ceph-mon[35734]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:21.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:20 smithi077 ceph-mon[35734]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:23.021 INFO:teuthology.orchestra.run.smithi062.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T08:37:23.021 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT53440094400BGN 372G No 103s ago Has a FileSystem, LVM detected 2024-09-17T08:37:23.021 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme1n1 ssd Linux_45fb94552deac6e9f3e1 89.4G No 103s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme2n1 ssd Linux_d0b4ab66f65aa7d6fb41 89.4G No 103s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme3n1 ssd Linux_fdc7b97ab3ff08762816 89.4G No 103s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi062 /dev/nvme4n1 ssd Linux_0b1920eef28558989380 89.4G No 103s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400ZJ400BGN 372G No 63s ago Has a FileSystem, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme1n1 ssd Linux_7a62bf7323e6f2099424 89.4G No 63s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme2n1 ssd Linux_96bfc3529cd73a58c7e3 89.4G No 63s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme3n1 ssd Linux_f7e2f92e40d0b5ea08a0 89.4G No 63s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.022 INFO:teuthology.orchestra.run.smithi062.stdout:smithi077 /dev/nvme4n1 ssd Linux_8992c4044953ff4c23f3 89.4G No 63s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T08:37:23.296 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:22 smithi077 ceph-mon[35734]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:23.299 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:22 smithi062 ceph-mon[25840]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:23.815 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-17T08:37:24.049 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:24 smithi062 ceph-mon[25840]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:24.050 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:24 smithi062 ceph-mon[25840]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:24.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:24 smithi077 ceph-mon[35734]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:24.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:24 smithi077 ceph-mon[35734]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:24.963 INFO:teuthology.orchestra.run.smithi062.stderr:Inferring config /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/mon.smithi062/config 2024-09-17T08:37:27.234 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:27.234 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:37:27.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:37:27.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.235 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:26 smithi062 ceph-mon[25840]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:37:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:27.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T08:37:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T08:37:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' 2024-09-17T08:37:27.311 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:26 smithi077 ceph-mon[35734]: from='mgr.14211 172.21.15.62:0/3622242757' entity='mgr.smithi062.kronsk' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T08:37:27.794 INFO:teuthology.orchestra.run.smithi062.stdout:osd.all-available-devices 8 13s ago 5m * 2024-09-17T08:37:28.189 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:27 smithi062 ceph-mon[25840]: Checking dashboard <-> RGW credentials 2024-09-17T08:37:28.189 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:27 smithi062 ceph-mon[25840]: Removing orphan daemon nfs.foo.0.0.smithi062.fckryn... 2024-09-17T08:37:28.190 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:27 smithi062 ceph-mon[25840]: Removing daemon nfs.foo.0.0.smithi062.fckryn from smithi062 -- ports [12049] 2024-09-17T08:37:28.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:27 smithi077 ceph-mon[35734]: Checking dashboard <-> RGW credentials 2024-09-17T08:37:28.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:27 smithi077 ceph-mon[35734]: Removing orphan daemon nfs.foo.0.0.smithi062.fckryn... 2024-09-17T08:37:28.310 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:27 smithi077 ceph-mon[35734]: Removing daemon nfs.foo.0.0.smithi062.fckryn from smithi062 -- ports [12049] 2024-09-17T08:37:28.582 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-17T08:37:28.593 INFO:tasks.vip:Removing 10.0.15.62 (and any VIPs) on smithi062.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T08:37:28.593 DEBUG:teuthology.orchestra.run.smithi062:> sudo ip addr del 10.0.15.62/16 dev enp3s0f1 2024-09-17T08:37:28.623 DEBUG:teuthology.orchestra.run.smithi062:> sudo ip addr del 10.0.31.62/16 dev enp3s0f1 2024-09-17T08:37:28.689 INFO:tasks.vip:Removing 10.0.15.77 (and any VIPs) on smithi077.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T08:37:28.689 DEBUG:teuthology.orchestra.run.smithi077:> sudo ip addr del 10.0.15.77/16 dev enp3s0f1 2024-09-17T08:37:28.724 DEBUG:teuthology.orchestra.run.smithi077:> sudo ip addr del 10.0.31.62/16 dev enp3s0f1 2024-09-17T08:37:28.791 INFO:teuthology.orchestra.run.smithi077.stderr:Error: ipv4: Address not found. 2024-09-17T08:37:28.792 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-17T08:37:28.793 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T08:37:28.803 INFO:tasks.cephadm:Teardown begin 2024-09-17T08:37:28.804 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:37:28.830 DEBUG:teuthology.orchestra.run.smithi077:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:37:28.860 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T08:37:28.860 DEBUG:teuthology.orchestra.run.smithi062:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:37:28.885 DEBUG:teuthology.orchestra.run.smithi077:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T08:37:28.916 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T08:37:28.916 INFO:tasks.cephadm.mon.smithi062:Stopping mon.smithi062... 2024-09-17T08:37:28.916 DEBUG:teuthology.orchestra.run.smithi062:> sudo systemctl stop ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062 2024-09-17T08:37:29.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:28 smithi077 ceph-mon[35734]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:29.060 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:28 smithi077 ceph-mon[35734]: pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:29.215 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:28 smithi062 ceph-mon[25840]: from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T08:37:29.216 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:28 smithi062 ceph-mon[25840]: pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T08:37:29.216 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:28 smithi062 systemd[1]: Stopping Ceph mon.smithi062 for d6ef9a88-74ce-11ef-bceb-c7b262605968... 2024-09-17T08:37:29.500 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:29 smithi062 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062[25817]: 2024-09-17T08:37:29.214+0000 7fd8f062c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi062 -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-17T08:37:29.500 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:29 smithi062 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062[25817]: 2024-09-17T08:37:29.214+0000 7fd8f062c640 -1 mon.smithi062@0(leader) e2 *** Got Signal Terminated *** 2024-09-17T08:37:29.500 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:29 smithi062 podman[92636]: 2024-09-17 08:37:29.348935778 +0000 UTC m=+0.230433997 container died ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, ceph=True) 2024-09-17T08:37:30.132 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:29 smithi062 podman[92636]: 2024-09-17 08:37:29.822244707 +0000 UTC m=+0.703742962 container cleanup ede0685b0ca8d4b5f1203fec67fac65fc05d71c98f843eb4bdf67845ea1794a8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, ceph=True) 2024-09-17T08:37:30.132 INFO:journalctl@ceph.mon.smithi062.smithi062.stdout:Sep 17 08:37:29 smithi062 bash[92636]: ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi062 2024-09-17T08:37:30.310 DEBUG:teuthology.orchestra.run.smithi062:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi062.service' 2024-09-17T08:37:30.361 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:37:30.361 INFO:tasks.cephadm.mon.smithi062:Stopped mon.smithi062 2024-09-17T08:37:30.362 INFO:tasks.cephadm.mon.smithi077:Stopping mon.smithi077... 2024-09-17T08:37:30.362 DEBUG:teuthology.orchestra.run.smithi077:> sudo systemctl stop ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi077 2024-09-17T08:37:30.701 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:30 smithi077 systemd[1]: Stopping Ceph mon.smithi077 for d6ef9a88-74ce-11ef-bceb-c7b262605968... 2024-09-17T08:37:31.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:30 smithi077 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077[35698]: 2024-09-17T08:37:30.700+0000 7f06a0f93640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi077 -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-17T08:37:31.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:30 smithi077 ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077[35698]: 2024-09-17T08:37:30.700+0000 7f06a0f93640 -1 mon.smithi077@1(peon) e2 *** Got Signal Terminated *** 2024-09-17T08:37:31.061 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:30 smithi077 podman[66482]: 2024-09-17 08:37:30.87427512 +0000 UTC m=+0.317236310 container died b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077, GIT_BRANCH=HEAD, ceph=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0) 2024-09-17T08:37:31.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:31 smithi077 podman[66482]: 2024-09-17 08:37:31.331634966 +0000 UTC m=+0.774596150 container cleanup b670b94658b09848f5a7429b7e929b7374996077166bcb4a5ca2086cb61c042e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T08:37:31.561 INFO:journalctl@ceph.mon.smithi077.smithi077.stdout:Sep 17 08:37:31 smithi077 bash[66482]: ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968-mon-smithi077 2024-09-17T08:37:31.761 DEBUG:teuthology.orchestra.run.smithi077:> sudo pkill -f 'journalctl -f -n 0 -u ceph-d6ef9a88-74ce-11ef-bceb-c7b262605968@mon.smithi077.service' 2024-09-17T08:37:31.805 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T08:37:31.805 INFO:tasks.cephadm.mon.smithi077:Stopped mon.smithi077 2024-09-17T08:37:31.805 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T08:37:39.103 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:38:37.237 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T08:38:37.392 INFO:teuthology.orchestra.run.smithi077.stdout:Deleting cluster with fsid: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:39:26.402 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:39:26.438 DEBUG:teuthology.orchestra.run.smithi077:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T08:39:26.467 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T08:39:26.469 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi062/crash 2024-09-17T08:39:26.470 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash -- . 2024-09-17T08:39:26.550 INFO:teuthology.orchestra.run.smithi062.stderr:tar: /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T08:39:26.550 INFO:teuthology.orchestra.run.smithi062.stderr:tar: Error is not recoverable: exiting now 2024-09-17T08:39:26.552 DEBUG:teuthology.misc:Transferring archived files from smithi077:/var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi077/crash 2024-09-17T08:39:26.553 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash -- . 2024-09-17T08:39:26.633 INFO:teuthology.orchestra.run.smithi077.stderr:tar: /var/lib/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T08:39:26.634 INFO:teuthology.orchestra.run.smithi077.stderr:tar: Error is not recoverable: exiting now 2024-09-17T08:39:26.635 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T08:39:26.635 DEBUG:teuthology.orchestra.run.smithi062:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/ceph.log | 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-17T08:39:26.666 INFO:teuthology.orchestra.run.smithi062.stderr:grep: /var/log/ceph/d6ef9a88-74ce-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-17T08:39:26.668 INFO:tasks.cephadm:Compressing logs... 2024-09-17T08:39:26.668 DEBUG:teuthology.orchestra.run.smithi062:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:39:26.710 DEBUG:teuthology.orchestra.run.smithi077:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:39:26.735 INFO:teuthology.orchestra.run.smithi077.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T08:39:26.737 INFO:teuthology.orchestra.run.smithi062.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T08:39:28.492 INFO:tasks.cephadm:Archiving logs... 2024-09-17T08:39:28.492 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi062/log 2024-09-17T08:39:28.493 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T08:39:28.773 DEBUG:teuthology.misc:Transferring archived files from smithi077:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi077/log 2024-09-17T08:39:28.774 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T08:39:28.990 INFO:tasks.cephadm:Removing cluster... 2024-09-17T08:39:28.991 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 --force 2024-09-17T08:39:29.135 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:39:29.268 DEBUG:teuthology.orchestra.run.smithi077:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid d6ef9a88-74ce-11ef-bceb-c7b262605968 --force 2024-09-17T08:39:29.418 INFO:teuthology.orchestra.run.smithi077.stdout:Deleting cluster with fsid: d6ef9a88-74ce-11ef-bceb-c7b262605968 2024-09-17T08:39:29.544 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T08:39:29.544 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T08:39:29.560 DEBUG:teuthology.orchestra.run.smithi077:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T08:39:29.575 INFO:tasks.cephadm:Teardown complete 2024-09-17T08:39:29.576 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-17T08:39:29.586 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_1... 2024-09-17T08:39:29.587 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_1 2024-09-17T08:39:29.745 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T08:39:29.746 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_2... 2024-09-17T08:39:29.746 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_2 2024-09-17T08:39:29.902 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T08:39:29.903 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_3... 2024-09-17T08:39:29.903 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_3 2024-09-17T08:39:30.051 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T08:39:30.053 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi062:/dev/vg_nvme/lv_4... 2024-09-17T08:39:30.053 DEBUG:teuthology.orchestra.run.smithi062:> sudo nvme disconnect -n lv_4 2024-09-17T08:39:30.200 INFO:teuthology.orchestra.run.smithi062.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T08:39:30.202 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-09-17T08:39:30.202 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/scratch_devs 2024-09-17T08:39:30.228 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_1... 2024-09-17T08:39:30.228 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_1 2024-09-17T08:39:30.374 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T08:39:30.376 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_2... 2024-09-17T08:39:30.376 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_2 2024-09-17T08:39:30.533 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T08:39:30.535 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_3... 2024-09-17T08:39:30.535 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_3 2024-09-17T08:39:30.676 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T08:39:30.678 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi077:/dev/vg_nvme/lv_4... 2024-09-17T08:39:30.678 DEBUG:teuthology.orchestra.run.smithi077:> sudo nvme disconnect -n lv_4 2024-09-17T08:39:30.822 INFO:teuthology.orchestra.run.smithi077.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T08:39:30.823 DEBUG:teuthology.orchestra.run.smithi077:> set -ex 2024-09-17T08:39:30.823 DEBUG:teuthology.orchestra.run.smithi077:> sudo dd of=/scratch_devs 2024-09-17T08:39:30.849 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T08:39:30.864 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T08:39:30.865 DEBUG:teuthology.orchestra.run.smithi062:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T08:39:30.868 DEBUG:teuthology.orchestra.run.smithi077:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T08:39:30.882 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:39:30.887 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:39:30.887 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-09-17T08:39:30.887 INFO:teuthology.orchestra.run.smithi062.stdout:^* hv01.front.sepia.ceph.com 3 6 377 9 +573us[ +575us] +/- 41ms 2024-09-17T08:39:30.888 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 9 -2188us[-2187us] +/- 47ms 2024-09-17T08:39:30.888 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 9 +3004us[+3006us] +/- 82ms 2024-09-17T08:39:30.888 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:39:30.903 INFO:teuthology.orchestra.run.smithi077.stderr:bash: line 1: ntpq: command not found 2024-09-17T08:39:30.907 INFO:teuthology.orchestra.run.smithi077.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T08:39:30.908 INFO:teuthology.orchestra.run.smithi077.stdout:=============================================================================== 2024-09-17T08:39:30.908 INFO:teuthology.orchestra.run.smithi077.stdout:^* hv01.front.sepia.ceph.com 3 6 377 9 +613us[ +607us] +/- 41ms 2024-09-17T08:39:30.908 INFO:teuthology.orchestra.run.smithi077.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 8 -2175us[-2175us] +/- 47ms 2024-09-17T08:39:30.908 INFO:teuthology.orchestra.run.smithi077.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 10 +3018us[+3011us] +/- 82ms 2024-09-17T08:39:30.908 INFO:teuthology.orchestra.run.smithi077.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T08:39:30.908 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T08:39:30.919 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T08:39:30.920 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T08:39:30.956 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:39:31.045 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:39:31.115 DEBUG:teuthology.orchestra.run.smithi062:> 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 2024-09-17T08:39:31.145 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:39:31.146 DEBUG:teuthology.orchestra.run.smithi077:> 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 2024-09-17T08:39:31.173 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:39:31.174 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T08:39:31.186 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T08:39:31.209 INFO:teuthology.task.internal:Duration was 891.113124 seconds 2024-09-17T08:39:31.209 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T08:39:31.243 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T08:39:31.244 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T08:39:31.246 DEBUG:teuthology.orchestra.run.smithi077:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T08:39:31.284 INFO:teuthology.orchestra.run.smithi077.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:39:31.285 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T08:39:31.594 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T08:39:31.594 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi062.front.sepia.ceph.com 2024-09-17T08:39:31.595 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:39:31.652 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi077.front.sepia.ceph.com 2024-09-17T08:39:31.652 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:39:31.681 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T08:39:31.682 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:39:31.695 DEBUG:teuthology.orchestra.run.smithi077:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T08:39:31.748 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T08:39:31.748 DEBUG:teuthology.orchestra.run.smithi062:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T08:39:31.763 DEBUG:teuthology.orchestra.run.smithi077:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T08:39:32.053 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T08:39:32.066 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T08:39:32.066 DEBUG:teuthology.orchestra.run.smithi062:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T08:39:32.093 DEBUG:teuthology.orchestra.run.smithi077:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T08:39:32.117 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T08:39:32.129 DEBUG:teuthology.orchestra.run.smithi062:> 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-17T08:39:32.135 DEBUG:teuthology.orchestra.run.smithi077:> 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-17T08:39:32.156 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = core 2024-09-17T08:39:32.181 INFO:teuthology.orchestra.run.smithi077.stdout:kernel.core_pattern = core 2024-09-17T08:39:32.206 DEBUG:teuthology.orchestra.run.smithi062:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T08:39:32.235 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:39:32.236 DEBUG:teuthology.orchestra.run.smithi077:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T08:39:32.260 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T08:39:32.260 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T08:39:32.272 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T08:39:32.273 DEBUG:teuthology.misc:Transferring archived files from smithi062:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi062 2024-09-17T08:39:32.273 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T08:39:32.316 DEBUG:teuthology.misc:Transferring archived files from smithi077:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908217/remote/smithi077 2024-09-17T08:39:32.316 DEBUG:teuthology.orchestra.run.smithi077:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T08:39:32.350 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T08:39:32.350 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T08:39:32.353 DEBUG:teuthology.orchestra.run.smithi077:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T08:39:32.400 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T08:39:32.413 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T08:39:32.413 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T08:39:32.478 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T08:39:32.478 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T08:39:32.481 DEBUG:teuthology.orchestra.run.smithi077:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T08:39:32.494 INFO:teuthology.orchestra.run.smithi062.stdout: 262169 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 08:39 /home/ubuntu/cephtest 2024-09-17T08:39:32.495 INFO:teuthology.orchestra.run.smithi077.stdout: 265613 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 08:39 /home/ubuntu/cephtest 2024-09-17T08:39:32.496 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T08:39:32.519 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T08:39:32.604 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 891.113124370575 owner: scheduled_teuthology@teuthology success: true 2024-09-17T08:39:32.605 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T08:39:32.687 INFO:teuthology.run:pass