2024-09-17T07:08:01.210 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T07:08:01.229 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T07:08:01.319 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164 branch: reef description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7908164' 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: smithi144.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGIByVmj9enxKQ+wO/nEX7Ciddem2hqX4MlhlbggomH+EushadXI4AYEKLiWQQkxQ7CbXV8nLw4atUuU3eWFKXc= smithi175.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCqR18KIlzRhbo5Wm5yaKncJI74dNUQS4q+jR1cA91pvVY3+I3rL0C4ANb5mcu7/NlRg/VfeP0ZcnflLFxjFPqY= 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 --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 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-17T07:08:01.320 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa; will attempt to use it 2024-09-17T07:08:01.320 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_1cbdc9211df088cccbd94423c7cf3a2b85fe432b/qa/tasks 2024-09-17T07:08:01.321 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T07:08:01.322 INFO:teuthology.task.internal:Checking packages... 2024-09-17T07:08:01.343 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' 2024-09-17T07:08:01.344 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T07:08:01.344 INFO:teuthology.packaging:ref: None 2024-09-17T07:08:01.344 INFO:teuthology.packaging:tag: None 2024-09-17T07:08:01.344 INFO:teuthology.packaging:branch: reef 2024-09-17T07:08:01.344 INFO:teuthology.packaging:sha1: 19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T07:08:01.344 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-17T07:08:01.645 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-855.g19e2a2be 2024-09-17T07:08:01.647 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T07:08:01.654 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T07:08:01.654 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T07:08:01.662 INFO:teuthology.task.internal:Saving configuration 2024-09-17T07:08:01.677 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T07:08:01.684 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T07:08:01.708 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi144.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164', '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 07:03:08.354041', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGIByVmj9enxKQ+wO/nEX7Ciddem2hqX4MlhlbggomH+EushadXI4AYEKLiWQQkxQ7CbXV8nLw4atUuU3eWFKXc='} 2024-09-17T07:08:01.730 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi175.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164', '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 07:03:08.355214', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCqR18KIlzRhbo5Wm5yaKncJI74dNUQS4q+jR1cA91pvVY3+I3rL0C4ANb5mcu7/NlRg/VfeP0ZcnflLFxjFPqY='} 2024-09-17T07:08:01.730 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T07:08:01.742 INFO:teuthology.task.internal:roles: ubuntu@smithi144.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-17T07:08:01.742 INFO:teuthology.task.internal:roles: ubuntu@smithi175.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-17T07:08:01.742 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T07:08:01.811 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f512002fac0>, signals=[15]) 2024-09-17T07:08:01.811 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T07:08:01.820 INFO:teuthology.task.internal:Opening connections... 2024-09-17T07:08:01.820 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:08:01.821 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:08:01.897 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi175.front.sepia.ceph.com 2024-09-17T07:08:01.898 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:08:01.970 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T07:08:01.977 DEBUG:teuthology.orchestra.run.smithi144:> uname -m 2024-09-17T07:08:01.996 INFO:teuthology.orchestra.run.smithi144.stdout:x86_64 2024-09-17T07:08:01.996 DEBUG:teuthology.orchestra.run.smithi144:> cat /etc/os-release 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:NAME="CentOS Stream" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION="9" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:ID="centos" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:ID_LIKE="rhel fedora" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION_ID="9" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:PLATFORM_ID="platform:el9" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T07:08:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:ANSI_COLOR="0;31" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:LOGO="fedora-logo-icon" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:HOME_URL="https://centos.org/" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T07:08:02.055 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T07:08:02.055 INFO:teuthology.lock.ops:Updating smithi144.front.sepia.ceph.com on lock server 2024-09-17T07:08:02.093 DEBUG:teuthology.orchestra.run.smithi175:> uname -m 2024-09-17T07:08:02.112 INFO:teuthology.orchestra.run.smithi175.stdout:x86_64 2024-09-17T07:08:02.112 DEBUG:teuthology.orchestra.run.smithi175:> cat /etc/os-release 2024-09-17T07:08:02.170 INFO:teuthology.orchestra.run.smithi175.stdout:NAME="CentOS Stream" 2024-09-17T07:08:02.170 INFO:teuthology.orchestra.run.smithi175.stdout:VERSION="9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:ID="centos" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:ID_LIKE="rhel fedora" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:VERSION_ID="9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:PLATFORM_ID="platform:el9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:ANSI_COLOR="0;31" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:LOGO="fedora-logo-icon" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:HOME_URL="https://centos.org/" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T07:08:02.171 INFO:teuthology.orchestra.run.smithi175.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T07:08:02.172 INFO:teuthology.lock.ops:Updating smithi175.front.sepia.ceph.com on lock server 2024-09-17T07:08:02.201 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T07:08:02.216 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T07:08:02.229 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T07:08:02.230 DEBUG:teuthology.orchestra.run.smithi144:> test '!' -e /home/ubuntu/cephtest 2024-09-17T07:08:02.232 DEBUG:teuthology.orchestra.run.smithi175:> test '!' -e /home/ubuntu/cephtest 2024-09-17T07:08:02.249 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T07:08:02.260 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T07:08:02.260 DEBUG:teuthology.orchestra.run.smithi144:> test -z $(ls -A /var/lib/ceph) 2024-09-17T07:08:02.290 DEBUG:teuthology.orchestra.run.smithi175:> test -z $(ls -A /var/lib/ceph) 2024-09-17T07:08:02.423 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T07:08:02.474 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T07:08:02.491 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T07:08:02.491 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T07:08:02.491 DEBUG:teuthology.orchestra.run.smithi144:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T07:08:02.492 DEBUG:teuthology.orchestra.run.smithi175:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T07:08:02.509 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:08:02.509 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:08:02.510 DEBUG:teuthology.orchestra.run.smithi175:> uname -r 2024-09-17T07:08:02.510 DEBUG:teuthology.orchestra.run.smithi144:> uname -r 2024-09-17T07:08:02.567 INFO:teuthology.orchestra.run.smithi144.stdout:5.14.0-503.el9.x86_64 2024-09-17T07:08:02.568 INFO:teuthology.task.kernel:Running kernel on smithi144: 5.14.0-503.el9.x86_64 2024-09-17T07:08:02.568 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum install -y kernel 2024-09-17T07:08:02.569 INFO:teuthology.orchestra.run.smithi175.stdout:5.14.0-503.el9.x86_64 2024-09-17T07:08:02.569 INFO:teuthology.task.kernel:Running kernel on smithi175: 5.14.0-503.el9.x86_64 2024-09-17T07:08:02.569 DEBUG:teuthology.orchestra.run.smithi175:> sudo yum install -y kernel 2024-09-17T07:08:05.178 INFO:teuthology.orchestra.run.smithi175.stdout:CentOS Stream 9 - BaseOS 8.9 MB/s | 8.3 MB 00:00 2024-09-17T07:08:09.624 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - BaseOS 1.6 MB/s | 8.3 MB 00:05 2024-09-17T07:08:11.375 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - AppStream 31 MB/s | 20 MB 00:00 2024-09-17T07:08:14.436 INFO:teuthology.orchestra.run.smithi175.stdout:CentOS Stream 9 - AppStream 2.5 MB/s | 20 MB 00:08 2024-09-17T07:08:15.842 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - CRB 16 MB/s | 6.5 MB 00:00 2024-09-17T07:08:17.610 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-17T07:08:18.597 INFO:teuthology.orchestra.run.smithi144.stdout:Extra Packages for Enterprise Linux 26 MB/s | 23 MB 00:00 2024-09-17T07:08:19.778 INFO:teuthology.orchestra.run.smithi175.stdout:CentOS Stream 9 - CRB 4.3 MB/s | 6.5 MB 00:01 2024-09-17T07:08:21.220 INFO:teuthology.orchestra.run.smithi175.stdout:CentOS Stream 9 - Extras packages 86 kB/s | 19 kB 00:00 2024-09-17T07:08:22.065 INFO:teuthology.orchestra.run.smithi175.stdout:Extra Packages for Enterprise Linux 31 MB/s | 23 MB 00:00 2024-09-17T07:08:24.020 INFO:teuthology.orchestra.run.smithi144.stdout:lab-extras 40 kB/s | 1.7 kB 00:00 2024-09-17T07:08:25.910 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T07:08:25.910 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T07:08:26.007 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:08:26.012 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-09-17T07:08:26.013 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:08:26.013 INFO:teuthology.orchestra.run.smithi144.stdout:Install 4 Packages 2024-09-17T07:08:26.013 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:08:26.013 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 79 M 2024-09-17T07:08:26.013 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 126 M 2024-09-17T07:08:26.014 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-09-17T07:08:26.613 INFO:teuthology.orchestra.run.smithi144.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 63 kB/s | 36 kB 00:00 2024-09-17T07:08:27.438 INFO:teuthology.orchestra.run.smithi144.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-09-17T07:08:27.463 INFO:teuthology.orchestra.run.smithi175.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T07:08:28.121 INFO:teuthology.orchestra.run.smithi144.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 17 MB/s | 35 MB 00:02 2024-09-17T07:08:29.030 INFO:teuthology.orchestra.run.smithi144.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 12 MB/s | 29 MB 00:02 2024-09-17T07:08:29.030 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:08:29.031 INFO:teuthology.orchestra.run.smithi144.stdout:Total 26 MB/s | 79 MB 00:03 2024-09-17T07:08:29.361 INFO:teuthology.orchestra.run.smithi175.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T07:08:29.361 INFO:teuthology.orchestra.run.smithi175.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T07:08:29.469 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout: Package Architecture Version Repository Size 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout:Installing: 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout:Installing dependencies: 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T07:08:29.478 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout:Install 4 Packages 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:08:29.479 INFO:teuthology.orchestra.run.smithi175.stdout:Total download size: 79 M 2024-09-17T07:08:29.480 INFO:teuthology.orchestra.run.smithi175.stdout:Installed size: 126 M 2024-09-17T07:08:29.480 INFO:teuthology.orchestra.run.smithi175.stdout:Downloading Packages: 2024-09-17T07:08:29.597 INFO:teuthology.orchestra.run.smithi175.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 490 kB/s | 36 kB 00:00 2024-09-17T07:08:29.712 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-09-17T07:08:30.081 INFO:teuthology.orchestra.run.smithi175.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 28 MB/s | 16 MB 00:00 2024-09-17T07:08:30.087 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-09-17T07:08:30.088 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-09-17T07:08:30.973 INFO:teuthology.orchestra.run.smithi175.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 21 MB/s | 29 MB 00:01 2024-09-17T07:08:31.057 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-09-17T07:08:31.057 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-09-17T07:08:31.290 INFO:teuthology.orchestra.run.smithi175.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 20 MB/s | 35 MB 00:01 2024-09-17T07:08:31.290 INFO:teuthology.orchestra.run.smithi175.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:08:31.290 INFO:teuthology.orchestra.run.smithi175.stdout:Total 44 MB/s | 79 MB 00:01 2024-09-17T07:08:31.974 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2024-09-17T07:08:32.323 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2024-09-17T07:08:32.324 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2024-09-17T07:08:33.302 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2024-09-17T07:08:33.303 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2024-09-17T07:08:33.497 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-09-17T07:08:34.155 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:08:34.241 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:08:35.742 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2024-09-17T07:08:36.422 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:08:36.514 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:08:36.991 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:08:37.163 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:08:39.285 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:08:39.409 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:08:42.001 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:08:42.093 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:08:44.268 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:08:44.367 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:08:46.929 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:08:49.218 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:24.964 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:25.003 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:25.407 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:25.407 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:09:25.407 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:09:25.407 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:09:26.265 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:09:26.266 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-09-17T07:09:26.622 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:09:26.707 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.707 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:09:26.707 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-17T07:09:26.707 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T07:09:26.707 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T07:09:26.708 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T07:09:26.708 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi144.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T07:09:26.708 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:09:26.766 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:26.766 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:09:26.767 DEBUG:teuthology.orchestra.run.smithi144:> sudo rpm -qi grub2-tools 2024-09-17T07:09:26.807 INFO:teuthology.orchestra.run.smithi144.stdout:Name : grub2-tools 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Epoch : 1 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Version : 2.06 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Release : 82.el9 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Architecture: x86_64 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Group : Unspecified 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Size : 8274670 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:License : GPLv3+ 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T07:09:26.808 INFO:teuthology.orchestra.run.smithi144.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:Packager : builder@centos.org 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:Vendor : CentOS 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:Summary : Support tools for GRUB. 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:Description : 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:hardware devices. 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:09:26.809 INFO:teuthology.orchestra.run.smithi144.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T07:09:26.810 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T07:09:26.810 INFO:teuthology.task.kernel:Updating grub on smithi144 to boot 5.14.0-508.el9.x86_64 2024-09-17T07:09:26.811 DEBUG:teuthology.orchestra.run.smithi144:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T07:09:27.398 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:27.439 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:27.495 INFO:teuthology.orchestra.run.smithi144.stderr:Generating grub configuration file ... 2024-09-17T07:09:27.755 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:27.755 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T07:09:27.755 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T07:09:27.755 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T07:09:28.607 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T07:09:28.607 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:09:28.607 INFO:teuthology.orchestra.run.smithi175.stdout:Installed: 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:09:28.608 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2024-09-17T07:09:28.852 INFO:teuthology.orchestra.run.smithi144.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T07:09:28.890 INFO:teuthology.orchestra.run.smithi144.stderr:done 2024-09-17T07:09:28.893 DEBUG:teuthology.orchestra.run.smithi144:> mktemp 2024-09-17T07:09:28.908 INFO:teuthology.orchestra.run.smithi144.stdout:/tmp/tmp.IAXOvJZvru 2024-09-17T07:09:28.908 DEBUG:teuthology.orchestra.run.smithi144:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.IAXOvJZvru 2024-09-17T07:09:28.950 DEBUG:teuthology.orchestra.run.smithi175:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:09:28.976 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod 0666 /tmp/tmp.IAXOvJZvru 2024-09-17T07:09:29.032 INFO:teuthology.orchestra.run.smithi175.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:29.033 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:09:29.033 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-17T07:09:29.033 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T07:09:29.033 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T07:09:29.033 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T07:09:29.033 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi175.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T07:09:29.033 DEBUG:teuthology.orchestra.run.smithi175:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T07:09:29.092 INFO:teuthology.orchestra.run.smithi175.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T07:09:29.092 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T07:09:29.092 DEBUG:teuthology.orchestra.run.smithi175:> sudo rpm -qi grub2-tools 2024-09-17T07:09:29.119 DEBUG:teuthology.orchestra.remote:smithi144:/tmp/tmp.IAXOvJZvru is 6KB 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Name : grub2-tools 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Epoch : 1 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Version : 2.06 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Release : 82.el9 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Architecture: x86_64 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Group : Unspecified 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:Size : 8274670 2024-09-17T07:09:29.126 INFO:teuthology.orchestra.run.smithi175.stdout:License : GPLv3+ 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Packager : builder@centos.org 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Vendor : CentOS 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Summary : Support tools for GRUB. 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:Description : 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T07:09:29.127 INFO:teuthology.orchestra.run.smithi175.stdout:hardware devices. 2024-09-17T07:09:29.128 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:09:29.128 INFO:teuthology.orchestra.run.smithi175.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T07:09:29.128 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T07:09:29.129 INFO:teuthology.task.kernel:Updating grub on smithi175 to boot 5.14.0-508.el9.x86_64 2024-09-17T07:09:29.129 DEBUG:teuthology.orchestra.run.smithi175:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T07:09:29.168 DEBUG:teuthology.orchestra.run.smithi144:> rm -fr /tmp/tmp.IAXOvJZvru 2024-09-17T07:09:29.183 DEBUG:teuthology.orchestra.run.smithi144:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T07:09:29.245 INFO:teuthology.orchestra.run.smithi144.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T07:09:29.246 INFO:teuthology.orchestra.run.smithi144.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T07:09:29.246 INFO:teuthology.orchestra.run.smithi144.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T07:09:29.246 INFO:teuthology.orchestra.run.smithi144.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T07:09:29.247 DEBUG:teuthology.orchestra.run.smithi144:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T07:09:29.400 DEBUG:teuthology.orchestra.run.smithi144:> sudo shutdown -r now 2024-09-17T07:09:29.828 INFO:teuthology.orchestra.run.smithi175.stderr:Generating grub configuration file ... 2024-09-17T07:09:31.207 INFO:teuthology.orchestra.run.smithi175.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T07:09:31.238 INFO:teuthology.orchestra.run.smithi175.stderr:done 2024-09-17T07:09:31.241 DEBUG:teuthology.orchestra.run.smithi175:> mktemp 2024-09-17T07:09:31.257 INFO:teuthology.orchestra.run.smithi175.stdout:/tmp/tmp.OG6sj4c3cf 2024-09-17T07:09:31.257 DEBUG:teuthology.orchestra.run.smithi175:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.OG6sj4c3cf 2024-09-17T07:09:31.323 DEBUG:teuthology.orchestra.run.smithi175:> sudo chmod 0666 /tmp/tmp.OG6sj4c3cf 2024-09-17T07:09:31.460 DEBUG:teuthology.orchestra.remote:smithi175:/tmp/tmp.OG6sj4c3cf is 6KB 2024-09-17T07:09:31.508 DEBUG:teuthology.orchestra.run.smithi175:> rm -fr /tmp/tmp.OG6sj4c3cf 2024-09-17T07:09:31.523 DEBUG:teuthology.orchestra.run.smithi175:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T07:09:31.586 INFO:teuthology.orchestra.run.smithi175.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T07:09:31.586 INFO:teuthology.orchestra.run.smithi175.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T07:09:31.586 INFO:teuthology.orchestra.run.smithi175.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T07:09:31.586 INFO:teuthology.orchestra.run.smithi175.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T07:09:31.588 DEBUG:teuthology.orchestra.run.smithi175:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T07:09:31.751 DEBUG:teuthology.orchestra.run.smithi175:> sudo shutdown -r now 2024-09-17T07:09:59.430 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T07:09:59.431 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:09:59.432 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:10:01.755 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T07:10:01.756 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi175.front.sepia.ceph.com' 2024-09-17T07:10:01.757 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:10:34.046 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.144 2024-09-17T07:10:43.053 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:10:43.054 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:11:01.437 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.144 2024-09-17T07:11:01.760 DEBUG:teuthology.orchestra.remote:timed out 2024-09-17T07:11:10.769 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi175.front.sepia.ceph.com' 2024-09-17T07:11:10.770 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:11:11.263 DEBUG:teuthology.orchestra.run.smithi175:> true 2024-09-17T07:11:11.720 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi175.front.sepia.ceph.com' 2024-09-17T07:11:11.721 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T07:11:11.721 DEBUG:teuthology.orchestra.run.smithi175:> uname -r 2024-09-17T07:11:11.736 INFO:teuthology.orchestra.run.smithi175.stdout:5.14.0-508.el9.x86_64 2024-09-17T07:11:11.736 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-17T07:11:11.736 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T07:11:11.736 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T07:11:12.737 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T07:11:12.737 DEBUG:teuthology.orchestra.run.smithi175:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T07:11:12.823 INFO:teuthology.orchestra.run.smithi175.stdout:ttyS1 2024-09-17T07:11:12.844 DEBUG:teuthology.parallel:result is None 2024-09-17T07:11:13.439 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:11:13.440 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:11:13.749 DEBUG:teuthology.orchestra.run.smithi144:> true 2024-09-17T07:11:14.100 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:11:14.101 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T07:11:14.101 DEBUG:teuthology.orchestra.run.smithi144:> uname -r 2024-09-17T07:11:14.116 INFO:teuthology.orchestra.run.smithi144.stdout:5.14.0-508.el9.x86_64 2024-09-17T07:11:14.116 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-17T07:11:14.116 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T07:11:14.117 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T07:11:15.117 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T07:11:15.118 DEBUG:teuthology.orchestra.run.smithi144:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T07:11:15.197 INFO:teuthology.orchestra.run.smithi144.stdout:ttyS1 2024-09-17T07:11:15.227 DEBUG:teuthology.parallel:result is None 2024-09-17T07:11:15.227 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T07:11:15.234 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T07:11:15.234 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T07:11:15.237 DEBUG:teuthology.orchestra.run.smithi175:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T07:11:15.253 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T07:11:15.260 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T07:11:15.266 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T07:11:15.266 DEBUG:teuthology.orchestra.run.smithi144:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T07:11:15.293 DEBUG:teuthology.orchestra.run.smithi175:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T07:11:15.316 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T07:11:15.322 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T07:11:15.323 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:11:15.356 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:11:15.387 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:11:15.397 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:11:15.418 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:11:15.428 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T07:11:15.430 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T07:11:15.437 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T07:11:15.437 DEBUG:teuthology.orchestra.run.smithi144:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T07:11:15.443 DEBUG:teuthology.orchestra.run.smithi175:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T07:11:15.467 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T07:11:15.477 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T07:11:15.477 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T07:11:15.509 DEBUG:teuthology.orchestra.run.smithi175:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T07:11:15.524 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:11:15.602 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:11:15.661 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:11:15.740 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:11:15.783 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:11:15.783 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T07:11:15.850 DEBUG:teuthology.orchestra.run.smithi175:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:11:15.889 DEBUG:teuthology.orchestra.run.smithi175:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T07:11:15.932 DEBUG:teuthology.orchestra.run.smithi175:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:11:16.011 DEBUG:teuthology.orchestra.run.smithi175:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T07:11:16.048 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:11:16.049 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T07:11:16.111 DEBUG:teuthology.orchestra.run.smithi144:> sudo service rsyslog restart 2024-09-17T07:11:16.118 DEBUG:teuthology.orchestra.run.smithi175:> sudo service rsyslog restart 2024-09-17T07:11:16.155 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:11:16.190 INFO:teuthology.orchestra.run.smithi175.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:11:16.522 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T07:11:16.529 INFO:teuthology.task.internal:Starting timer... 2024-09-17T07:11:16.529 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T07:11:16.584 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T07:11:16.592 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-17T07:11:16.593 DEBUG:teuthology.orchestra.run.smithi144:> sudo service auditd rotate 2024-09-17T07:11:16.664 INFO:teuthology.orchestra.run.smithi144.stdout:Rotating logs: 2024-09-17T07:11:16.666 DEBUG:teuthology.orchestra.run.smithi175:> sudo service auditd rotate 2024-09-17T07:11:16.749 INFO:teuthology.orchestra.run.smithi175.stdout:Rotating logs: 2024-09-17T07:11:16.751 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T07:11:16.751 DEBUG:teuthology.orchestra.run.smithi144:> /usr/sbin/getenforce 2024-09-17T07:11:16.780 INFO:teuthology.orchestra.run.smithi144.stdout:Permissive 2024-09-17T07:11:16.780 DEBUG:teuthology.orchestra.run.smithi175:> /usr/sbin/getenforce 2024-09-17T07:11:16.801 INFO:teuthology.orchestra.run.smithi175.stdout:Permissive 2024-09-17T07:11:16.801 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi144.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi175.front.sepia.ceph.com': 'permissive'} 2024-09-17T07:11:16.802 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:11:16.845 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:11:16.845 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:11:16.869 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:11:16.870 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T07:11:16.870 DEBUG:teuthology.orchestra.run.smithi144:> sudo /usr/sbin/setenforce permissive 2024-09-17T07:11:16.987 DEBUG:teuthology.orchestra.run.smithi175:> sudo /usr/sbin/setenforce permissive 2024-09-17T07:11:17.035 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T07:11:17.044 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-17T07:11:17.047 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-17T07:11:17.165 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T07:11:17.176 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-17T07:11:17.177 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi144.front.sepia.ceph.com,smithi175.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T07:15:02.838 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi144.front.sepia.ceph.com'), Remote(name='ubuntu@smithi175.front.sepia.ceph.com')] 2024-09-17T07:15:02.840 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:15:02.841 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:15:02.918 DEBUG:teuthology.orchestra.run.smithi144:> true 2024-09-17T07:15:02.996 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-09-17T07:15:02.996 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi175.front.sepia.ceph.com' 2024-09-17T07:15:02.997 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi175.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T07:15:03.072 DEBUG:teuthology.orchestra.run.smithi175:> true 2024-09-17T07:15:03.149 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi175.front.sepia.ceph.com' 2024-09-17T07:15:03.149 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T07:15:03.160 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T07:15:03.160 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T07:15:03.160 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:03.163 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T07:15:03.163 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:03.190 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T07:15:03.204 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T07:15:03.221 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T07:15:03.229 INFO:teuthology.orchestra.run.smithi144.stderr:sudo: ntpd: command not found 2024-09-17T07:15:03.235 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T07:15:03.240 INFO:teuthology.orchestra.run.smithi144.stdout:506 Cannot talk to daemon 2024-09-17T07:15:03.254 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T07:15:03.259 INFO:teuthology.orchestra.run.smithi175.stderr:sudo: ntpd: command not found 2024-09-17T07:15:03.268 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T07:15:03.271 INFO:teuthology.orchestra.run.smithi175.stdout:506 Cannot talk to daemon 2024-09-17T07:15:03.285 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T07:15:03.299 INFO:teuthology.orchestra.run.smithi175.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T07:15:03.332 INFO:teuthology.orchestra.run.smithi144.stderr:bash: line 1: ntpq: command not found 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:=============================================================================== 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.335 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.354 INFO:teuthology.orchestra.run.smithi175.stderr:bash: line 1: ntpq: command not found 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:=============================================================================== 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.358 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:15:03.358 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T07:15:03.375 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T07:15:03.376 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:15:03.376 DEBUG:teuthology.orchestra.run.smithi144:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T07:15:03.377 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi175.front.sepia.ceph.com 2024-09-17T07:15:03.377 DEBUG:teuthology.orchestra.run.smithi175:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T07:15:03.741 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-09-17T07:15:03.743 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:03.743 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-09-17T07:15:03.743 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Removing: 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Removing unused dependencies: 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Remove 2 Packages 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Freed space: 5.5 M 2024-09-17T07:15:03.744 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-09-17T07:15:03.748 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-09-17T07:15:03.748 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-09-17T07:15:03.761 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout: Package Architecture Version Repository Size 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout:Removing: 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout:Removing unused dependencies: 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:03.769 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2024-09-17T07:15:03.770 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:03.770 INFO:teuthology.orchestra.run.smithi175.stdout:Remove 2 Packages 2024-09-17T07:15:03.770 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:03.770 INFO:teuthology.orchestra.run.smithi175.stdout:Freed space: 5.5 M 2024-09-17T07:15:03.770 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2024-09-17T07:15:03.773 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2024-09-17T07:15:03.773 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2024-09-17T07:15:03.820 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-09-17T07:15:03.820 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-09-17T07:15:03.835 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2024-09-17T07:15:03.836 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2024-09-17T07:15:03.957 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-09-17T07:15:03.978 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2024-09-17T07:15:04.044 INFO:teuthology.orchestra.run.smithi144.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T07:15:04.048 INFO:teuthology.orchestra.run.smithi175.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T07:15:04.098 INFO:teuthology.orchestra.run.smithi144.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T07:15:04.105 INFO:teuthology.orchestra.run.smithi175.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T07:15:04.590 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T07:15:04.590 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T07:15:04.620 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T07:15:04.620 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T07:15:04.841 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T07:15:04.841 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:04.841 INFO:teuthology.orchestra.run.smithi175.stdout:Removed: 2024-09-17T07:15:04.841 INFO:teuthology.orchestra.run.smithi175.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T07:15:04.841 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:04.842 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout:Removed: 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:04.864 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-09-17T07:15:05.701 INFO:teuthology.orchestra.run.smithi175.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 07:14:16 AM UTC. 2024-09-17T07:15:05.749 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:49 ago on Tue 17 Sep 2024 07:14:16 AM UTC. 2024-09-17T07:15:05.839 INFO:teuthology.orchestra.run.smithi175.stdout:Dependencies resolved. 2024-09-17T07:15:05.839 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:05.839 INFO:teuthology.orchestra.run.smithi175.stdout: Package Arch Version Repository Size 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout:Installing: 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout:Installing dependencies: 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction Summary 2024-09-17T07:15:05.840 INFO:teuthology.orchestra.run.smithi175.stdout:================================================================================ 2024-09-17T07:15:05.841 INFO:teuthology.orchestra.run.smithi175.stdout:Install 7 Packages 2024-09-17T07:15:05.841 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:05.854 INFO:teuthology.orchestra.run.smithi175.stdout:Total download size: 5.2 M 2024-09-17T07:15:05.854 INFO:teuthology.orchestra.run.smithi175.stdout:Installed size: 19 M 2024-09-17T07:15:05.854 INFO:teuthology.orchestra.run.smithi175.stdout:Downloading Packages: 2024-09-17T07:15:05.888 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T07:15:05.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout:Install 7 Packages 2024-09-17T07:15:05.890 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:05.907 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 5.2 M 2024-09-17T07:15:05.907 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 19 M 2024-09-17T07:15:05.907 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-09-17T07:15:06.228 INFO:teuthology.orchestra.run.smithi144.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 291 kB/s | 44 kB 00:00 2024-09-17T07:15:06.253 INFO:teuthology.orchestra.run.smithi144.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 594 kB/s | 106 kB 00:00 2024-09-17T07:15:06.287 INFO:teuthology.orchestra.run.smithi175.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 408 kB/s | 44 kB 00:00 2024-09-17T07:15:06.312 INFO:teuthology.orchestra.run.smithi175.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 789 kB/s | 106 kB 00:00 2024-09-17T07:15:06.320 INFO:teuthology.orchestra.run.smithi144.stdout:(3/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.2 MB/s | 84 kB 00:00 2024-09-17T07:15:06.346 INFO:teuthology.orchestra.run.smithi144.stdout:(4/7): python3-configshell-1.1.30-1.el9.noarch. 611 kB/s | 72 kB 00:00 2024-09-17T07:15:06.362 INFO:teuthology.orchestra.run.smithi175.stdout:(3/7): python3-configshell-1.1.30-1.el9.noarch. 952 kB/s | 72 kB 00:00 2024-09-17T07:15:06.380 INFO:teuthology.orchestra.run.smithi144.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.9 MB/s | 906 kB 00:00 2024-09-17T07:15:06.387 INFO:teuthology.orchestra.run.smithi175.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2024-09-17T07:15:06.446 INFO:teuthology.orchestra.run.smithi175.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.3 MB/s | 906 kB 00:00 2024-09-17T07:15:06.480 INFO:teuthology.orchestra.run.smithi144.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.1 MB/s | 837 kB 00:00 2024-09-17T07:15:06.530 INFO:teuthology.orchestra.run.smithi175.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 4.9 MB/s | 837 kB 00:00 2024-09-17T07:15:06.639 INFO:teuthology.orchestra.run.smithi175.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 13 MB/s | 3.2 MB 00:00 2024-09-17T07:15:06.639 INFO:teuthology.orchestra.run.smithi175.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:15:06.639 INFO:teuthology.orchestra.run.smithi175.stdout:Total 6.6 MB/s | 5.2 MB 00:00 2024-09-17T07:15:06.749 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction check 2024-09-17T07:15:06.765 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction check succeeded. 2024-09-17T07:15:06.765 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction test 2024-09-17T07:15:07.076 INFO:teuthology.orchestra.run.smithi175.stdout:Transaction test succeeded. 2024-09-17T07:15:07.076 INFO:teuthology.orchestra.run.smithi175.stdout:Running transaction 2024-09-17T07:15:07.413 INFO:teuthology.orchestra.run.smithi144.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 3.0 MB/s | 3.2 MB 00:01 2024-09-17T07:15:07.414 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:15:07.414 INFO:teuthology.orchestra.run.smithi144.stdout:Total 3.4 MB/s | 5.2 MB 00:01 2024-09-17T07:15:07.529 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-09-17T07:15:07.545 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-09-17T07:15:07.545 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-09-17T07:15:07.584 INFO:teuthology.orchestra.run.smithi175.stdout: Preparing : 1/1 2024-09-17T07:15:07.682 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T07:15:07.717 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T07:15:07.746 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T07:15:07.870 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-09-17T07:15:07.870 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-09-17T07:15:07.953 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T07:15:07.985 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T07:15:08.349 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-09-17T07:15:08.430 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T07:15:08.440 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T07:15:08.464 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T07:15:08.476 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T07:15:08.505 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T07:15:08.576 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T07:15:08.643 INFO:teuthology.orchestra.run.smithi175.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:08.719 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T07:15:08.760 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T07:15:09.198 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T07:15:09.230 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T07:15:09.354 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T07:15:09.425 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T07:15:09.549 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T07:15:09.550 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout:Installed: 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T07:15:09.955 INFO:teuthology.orchestra.run.smithi175.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T07:15:09.956 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:15:09.956 INFO:teuthology.orchestra.run.smithi175.stdout:Complete! 2024-09-17T07:15:10.300 DEBUG:teuthology.parallel:result is None 2024-09-17T07:15:10.470 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:10.470 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T07:15:10.471 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T07:15:10.471 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T07:15:10.471 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T07:15:10.471 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T07:15:10.471 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T07:15:10.914 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:15:10.915 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-09-17T07:15:11.296 DEBUG:teuthology.parallel:result is None 2024-09-17T07:15:11.296 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-17T07:15:11.307 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-17T07:15:11.307 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:15:11.307 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:15:11.324 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-17T07:15:11.324 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/vg_nvme/lv_1 2024-09-17T07:15:11.379 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T07:15:11.379 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:11.379 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 962 Links: 1 2024-09-17T07:15:11.379 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:11.380 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:11.380 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:15:09.664297887 +0000 2024-09-17T07:15:11.380 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.380 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.380 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.380 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T07:15:11.442 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:15:11.442 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:15:11.442 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000189004 s, 2.7 MB/s 2024-09-17T07:15:11.443 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T07:15:11.499 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/vg_nvme/lv_2 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:15:09.664297887 +0000 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:09.306303815 +0000 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:09.306303815 +0000 2024-09-17T07:15:11.556 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:09.306303815 +0000 2024-09-17T07:15:11.556 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T07:15:11.619 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:15:11.619 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:15:11.620 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000174066 s, 2.9 MB/s 2024-09-17T07:15:11.620 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T07:15:11.677 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/vg_nvme/lv_3 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 961 Links: 1 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:15:09.664297887 +0000 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.733 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:09.304303848 +0000 2024-09-17T07:15:11.734 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T07:15:11.797 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:15:11.797 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:15:11.797 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000231698 s, 2.2 MB/s 2024-09-17T07:15:11.798 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T07:15:11.856 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/vg_nvme/lv_4 2024-09-17T07:15:11.911 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:15:09.665297870 +0000 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:09.305303832 +0000 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:09.305303832 +0000 2024-09-17T07:15:11.912 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:09.305303832 +0000 2024-09-17T07:15:11.912 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T07:15:11.975 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:15:11.975 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:15:11.975 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000189145 s, 2.7 MB/s 2024-09-17T07:15:11.976 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T07:15:12.033 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:12.168 INFO:teuthology.orchestra.run.smithi144.stdout:loop 2024-09-17T07:15:12.169 INFO:tasks.nvme_loop:Connecting nvme_loop smithi144:/dev/vg_nvme/lv_1... 2024-09-17T07:15:12.169 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:12.202 INFO:teuthology.orchestra.run.smithi144.stdout:1 2024-09-17T07:15:12.232 INFO:teuthology.orchestra.run.smithi144.stdout:/dev/vg_nvme/lv_11 2024-09-17T07:15:12.278 INFO:teuthology.orchestra.run.smithi144.stdout:connecting to device: nvme1 2024-09-17T07:15:12.280 INFO:tasks.nvme_loop:Connecting nvme_loop smithi144:/dev/vg_nvme/lv_2... 2024-09-17T07:15:12.280 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:12.356 INFO:teuthology.orchestra.run.smithi144.stdout:1 2024-09-17T07:15:12.386 INFO:teuthology.orchestra.run.smithi144.stdout:/dev/vg_nvme/lv_21 2024-09-17T07:15:12.417 INFO:teuthology.orchestra.run.smithi144.stdout:connecting to device: nvme2 2024-09-17T07:15:12.419 INFO:tasks.nvme_loop:Connecting nvme_loop smithi144:/dev/vg_nvme/lv_3... 2024-09-17T07:15:12.419 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:12.494 INFO:teuthology.orchestra.run.smithi144.stdout:1 2024-09-17T07:15:12.524 INFO:teuthology.orchestra.run.smithi144.stdout:/dev/vg_nvme/lv_31 2024-09-17T07:15:12.559 INFO:teuthology.orchestra.run.smithi144.stdout:connecting to device: nvme3 2024-09-17T07:15:12.561 INFO:tasks.nvme_loop:Connecting nvme_loop smithi144:/dev/vg_nvme/lv_4... 2024-09-17T07:15:12.561 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:12.637 INFO:teuthology.orchestra.run.smithi144.stdout:1 2024-09-17T07:15:12.674 INFO:teuthology.orchestra.run.smithi144.stdout:/dev/vg_nvme/lv_41 2024-09-17T07:15:12.724 INFO:teuthology.orchestra.run.smithi144.stdout:connecting to device: nvme4 2024-09-17T07:15:12.726 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:15:12.727 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:15:12.779 DEBUG:teuthology.orchestra.run.smithi144:> sudo nvme list -o json 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout:{ 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout: "Devices":[ 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout: { 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout: "NameSpace":1, 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T07:15:12.845 INFO:teuthology.orchestra.run.smithi144.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "SerialNumber":"5a3ac95ac9c891cc3cc8", 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "SectorSize":512 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: }, 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: { 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "NameSpace":1, 2024-09-17T07:15:12.846 INFO:teuthology.orchestra.run.smithi144.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "SerialNumber":"21fb870e18227381293c", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "SectorSize":512 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: }, 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: { 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "NameSpace":1, 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T07:15:12.847 INFO:teuthology.orchestra.run.smithi144.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "SerialNumber":"dea71e366a39d07cc00f", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "SectorSize":512 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: }, 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: { 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "NameSpace":1, 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T07:15:12.848 INFO:teuthology.orchestra.run.smithi144.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "SerialNumber":"7f92df8d0f451d568fbc", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "SectorSize":512 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: }, 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: { 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "NameSpace":1, 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "Firmware":"8DV101H0", 2024-09-17T07:15:12.849 INFO:teuthology.orchestra.run.smithi144.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: "SerialNumber":"PHFT62050085400BGN", 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: "UsedBytes":400088457216, 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: "MaximumLBA":781422768, 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: "PhysicalSize":400088457216, 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: "SectorSize":512 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: } 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout: ] 2024-09-17T07:15:12.850 INFO:teuthology.orchestra.run.smithi144.stdout:} 2024-09-17T07:15:12.851 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T07:15:12.851 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:15:12.851 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/scratch_devs 2024-09-17T07:15:12.919 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:15:12.919 DEBUG:teuthology.orchestra.run.smithi175:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:15:12.939 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-17T07:15:12.939 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/vg_nvme/lv_1 2024-09-17T07:15:12.998 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T07:15:12.998 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:15:08.870053649 +0000 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:12.999 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:12.999 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T07:15:13.067 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:15:13.067 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:15:13.068 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.00022677 s, 2.3 MB/s 2024-09-17T07:15:13.069 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T07:15:13.127 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/vg_nvme/lv_2 2024-09-17T07:15:13.185 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 984 Links: 1 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:15:08.870053649 +0000 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:08.546929506 +0000 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:08.546929506 +0000 2024-09-17T07:15:13.186 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:08.546929506 +0000 2024-09-17T07:15:13.187 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T07:15:13.252 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:15:13.252 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:15:13.252 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000198983 s, 2.6 MB/s 2024-09-17T07:15:13.253 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T07:15:13.311 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/vg_nvme/lv_3 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:15:08.871054034 +0000 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:13.368 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:13.369 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:08.544928738 +0000 2024-09-17T07:15:13.369 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T07:15:13.432 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:15:13.432 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:15:13.432 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000206617 s, 2.5 MB/s 2024-09-17T07:15:13.433 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T07:15:13.491 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/vg_nvme/lv_4 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:15:08.871054034 +0000 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:08.545929122 +0000 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:08.545929122 +0000 2024-09-17T07:15:13.547 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:08.545929122 +0000 2024-09-17T07:15:13.548 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T07:15:13.611 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:15:13.611 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:15:13.611 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000168182 s, 3.0 MB/s 2024-09-17T07:15:13.612 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T07:15:13.670 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:13.815 INFO:teuthology.orchestra.run.smithi175.stdout:loop 2024-09-17T07:15:13.816 INFO:tasks.nvme_loop:Connecting nvme_loop smithi175:/dev/vg_nvme/lv_1... 2024-09-17T07:15:13.816 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:13.850 INFO:teuthology.orchestra.run.smithi175.stdout:1 2024-09-17T07:15:13.879 INFO:teuthology.orchestra.run.smithi175.stdout:/dev/vg_nvme/lv_11 2024-09-17T07:15:13.922 INFO:teuthology.orchestra.run.smithi175.stdout:connecting to device: nvme1 2024-09-17T07:15:13.924 INFO:tasks.nvme_loop:Connecting nvme_loop smithi175:/dev/vg_nvme/lv_2... 2024-09-17T07:15:13.924 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:14.008 INFO:teuthology.orchestra.run.smithi175.stdout:1 2024-09-17T07:15:14.039 INFO:teuthology.orchestra.run.smithi175.stdout:/dev/vg_nvme/lv_21 2024-09-17T07:15:14.075 INFO:teuthology.orchestra.run.smithi175.stdout:connecting to device: nvme2 2024-09-17T07:15:14.078 INFO:tasks.nvme_loop:Connecting nvme_loop smithi175:/dev/vg_nvme/lv_3... 2024-09-17T07:15:14.078 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:14.152 INFO:teuthology.orchestra.run.smithi175.stdout:1 2024-09-17T07:15:14.183 INFO:teuthology.orchestra.run.smithi175.stdout:/dev/vg_nvme/lv_31 2024-09-17T07:15:14.219 INFO:teuthology.orchestra.run.smithi175.stdout:connecting to device: nvme3 2024-09-17T07:15:14.220 INFO:tasks.nvme_loop:Connecting nvme_loop smithi175:/dev/vg_nvme/lv_4... 2024-09-17T07:15:14.221 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:14.295 INFO:teuthology.orchestra.run.smithi175.stdout:1 2024-09-17T07:15:14.325 INFO:teuthology.orchestra.run.smithi175.stdout:/dev/vg_nvme/lv_41 2024-09-17T07:15:14.365 INFO:teuthology.orchestra.run.smithi175.stdout:connecting to device: nvme4 2024-09-17T07:15:14.367 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:15:14.367 DEBUG:teuthology.orchestra.run.smithi175:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:15:14.424 DEBUG:teuthology.orchestra.run.smithi175:> sudo nvme list -o json 2024-09-17T07:15:14.490 INFO:teuthology.orchestra.run.smithi175.stdout:{ 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "Devices":[ 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: { 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "NameSpace":1, 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "SerialNumber":"c9219db9d0d04b4c0648", 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:14.491 INFO:teuthology.orchestra.run.smithi175.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "SectorSize":512 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: }, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: { 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "NameSpace":1, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "SerialNumber":"dea26104e97055a36259", 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:14.492 INFO:teuthology.orchestra.run.smithi175.stdout: "SectorSize":512 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: }, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: { 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "NameSpace":1, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "SerialNumber":"7452f9f7f1974b9b07a5", 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: "SectorSize":512 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: }, 2024-09-17T07:15:14.493 INFO:teuthology.orchestra.run.smithi175.stdout: { 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "NameSpace":1, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "Firmware":"5.14.0-5", 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "ModelNumber":"Linux", 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "SerialNumber":"b2c8e4c9f39869b04136", 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "UsedBytes":95995035648, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "MaximumLBA":187490304, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "PhysicalSize":95995035648, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "SectorSize":512 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: }, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: { 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "NameSpace":1, 2024-09-17T07:15:14.494 INFO:teuthology.orchestra.run.smithi175.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "Firmware":"8DV101H0", 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "SerialNumber":"CVFT623300M0400BGN", 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "UsedBytes":400088457216, 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "MaximumLBA":781422768, 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "PhysicalSize":400088457216, 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: "SectorSize":512 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: } 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout: ] 2024-09-17T07:15:14.495 INFO:teuthology.orchestra.run.smithi175.stdout:} 2024-09-17T07:15:14.496 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T07:15:14.496 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:15:14.496 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/scratch_devs 2024-09-17T07:15:14.562 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T07:15:14.665 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-17T07:15:14.665 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T07:15:14.666 INFO:tasks.cephadm:Cluster fsid is 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:15:14.666 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T07:15:14.666 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-17T07:15:14.666 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi144': '172.21.15.144', 'mon.smithi175': '172.21.15.175'} 2024-09-17T07:15:14.666 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T07:15:14.667 DEBUG:teuthology.orchestra.run.smithi144:> sudo hostname $(hostname -s) 2024-09-17T07:15:14.698 DEBUG:teuthology.orchestra.run.smithi175:> sudo hostname $(hostname -s) 2024-09-17T07:15:14.723 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T07:15:14.724 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-17T07:15:14.870 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-17T07:15:15.017 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-17T07:15:15.019 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/reef/19e2a2beb6f41a3ab62650e38614eb29b59dcbb9/centos/9/x86_64/flavors/default/cephadm 2024-09-17T07:15:15.019 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:15:15.370 INFO:teuthology.orchestra.run.smithi144.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 07:15 /home/ubuntu/cephtest/cephadm 2024-09-17T07:15:15.370 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:15:15.723 INFO:teuthology.orchestra.run.smithi175.stdout:-rw-r--r--. 1 ubuntu ubuntu 217222 Sep 17 07:15 /home/ubuntu/cephtest/cephadm 2024-09-17T07:15:15.724 DEBUG:teuthology.orchestra.run.smithi144:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T07:15:15.744 DEBUG:teuthology.orchestra.run.smithi175:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T07:15:15.769 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 on all hosts... 2024-09-17T07:15:15.770 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T07:15:15.786 DEBUG:teuthology.orchestra.run.smithi175:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 pull 2024-09-17T07:15:17.251 INFO:teuthology.orchestra.run.smithi175.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T07:15:17.396 INFO:teuthology.orchestra.run.smithi144.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T07:15:57.519 INFO:teuthology.orchestra.run.smithi175.stdout:{ 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout: "repo_digests": [ 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout: ] 2024-09-17T07:15:57.520 INFO:teuthology.orchestra.run.smithi175.stdout:} 2024-09-17T07:16:00.190 INFO:teuthology.orchestra.run.smithi144.stdout:{ 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout: "ceph_version": "ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable)", 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout: "image_id": "980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89", 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout: "repo_digests": [ 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9" 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout: ] 2024-09-17T07:16:00.191 INFO:teuthology.orchestra.run.smithi144.stdout:} 2024-09-17T07:16:00.211 DEBUG:teuthology.orchestra.run.smithi144:> sudo mkdir -p /etc/ceph 2024-09-17T07:16:00.276 DEBUG:teuthology.orchestra.run.smithi175:> sudo mkdir -p /etc/ceph 2024-09-17T07:16:00.311 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod 777 /etc/ceph 2024-09-17T07:16:00.338 DEBUG:teuthology.orchestra.run.smithi175:> sudo chmod 777 /etc/ceph 2024-09-17T07:16:00.380 INFO:tasks.cephadm:Writing seed config... 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T07:16:00.382 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T07:16:00.383 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T07:16:00.383 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-17T07:16:00.384 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:16:00.385 DEBUG:teuthology.orchestra.run.smithi144:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T07:16:00.400 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 = 95c1565a-74c4-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-17T07:16:00.401 DEBUG:teuthology.orchestra.run.smithi144:mon.smithi144> sudo journalctl -f -n 0 -u ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service 2024-09-17T07:16:00.444 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T07:16:00.444 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 -v bootstrap --fsid 95c1565a-74c4-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.144 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:16:00.601 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:16:00.601 INFO:teuthology.orchestra.run.smithi144.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9', '-v', 'bootstrap', '--fsid', '95c1565a-74c4-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.144', '--skip-admin-label'] 2024-09-17T07:16:00.625 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stdout 5.2.2 2024-09-17T07:16:00.625 INFO:teuthology.orchestra.run.smithi144.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T07:16:00.626 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying podman|docker is present... 2024-09-17T07:16:00.647 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stdout 5.2.2 2024-09-17T07:16:00.647 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying lvm2 is present... 2024-09-17T07:16:00.648 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying time synchronization is in place... 2024-09-17T07:16:00.655 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T07:16:00.655 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T07:16:00.661 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T07:16:00.661 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:16:00.667 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout enabled 2024-09-17T07:16:00.676 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout active 2024-09-17T07:16:00.677 INFO:teuthology.orchestra.run.smithi144.stdout:Unit chronyd.service is enabled and running 2024-09-17T07:16:00.677 INFO:teuthology.orchestra.run.smithi144.stdout:Repeating the final host check... 2024-09-17T07:16:00.695 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stdout 5.2.2 2024-09-17T07:16:00.695 INFO:teuthology.orchestra.run.smithi144.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T07:16:00.695 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl is present 2024-09-17T07:16:00.695 INFO:teuthology.orchestra.run.smithi144.stdout:lvcreate is present 2024-09-17T07:16:00.702 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T07:16:00.702 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T07:16:00.708 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T07:16:00.708 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:16:00.714 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout enabled 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout active 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Unit chronyd.service is enabled and running 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Host looks OK 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Cluster fsid: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Acquiring lock 140058525740480 on /run/cephadm/95c1565a-74c4-11ef-bceb-c7b262605968.lock 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Lock 140058525740480 acquired on /run/cephadm/95c1565a-74c4-11ef-bceb-c7b262605968.lock 2024-09-17T07:16:00.721 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying IP 172.21.15.144 port 3300 ... 2024-09-17T07:16:00.722 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying IP 172.21.15.144 port 6789 ... 2024-09-17T07:16:00.722 INFO:teuthology.orchestra.run.smithi144.stdout:Base mon IP(s) is [172.21.15.144:3300, 172.21.15.144:6789], mon addrv is [v2:172.21.15.144:3300,v1:172.21.15.144:6789] 2024-09-17T07:16:00.725 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.144 metric 100 2024-09-17T07:16:00.726 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.144 metric 100 2024-09-17T07:16:00.727 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T07:16:00.727 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-09-17T07:16:00.727 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-09-17T07:16:00.729 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T07:16:00.729 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T07:16:00.730 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T07:16:00.731 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-17T07:16:00.731 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7f5f/64 scope link noprefixroute 2024-09-17T07:16:00.731 INFO:teuthology.orchestra.run.smithi144.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T07:16:00.732 INFO:teuthology.orchestra.run.smithi144.stdout:Mon IP `172.21.15.144` is in CIDR network `172.21.0.0/20` 2024-09-17T07:16:00.732 INFO:teuthology.orchestra.run.smithi144.stdout:Mon IP `172.21.15.144` is in CIDR network `172.21.0.0/20` 2024-09-17T07:16:00.732 INFO:teuthology.orchestra.run.smithi144.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T07:16:00.732 INFO:teuthology.orchestra.run.smithi144.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T07:16:00.732 INFO:teuthology.orchestra.run.smithi144.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stdout 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9... 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Copying blob sha256:d8a707c21dc06a64315160cb2d8e524fa91943a344731b2a930ee3a716bebbdd 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Copying config sha256:980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 2024-09-17T07:16:01.236 INFO:teuthology.orchestra.run.smithi144.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T07:16:02.231 INFO:teuthology.orchestra.run.smithi144.stdout:ceph: stdout ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T07:16:02.232 INFO:teuthology.orchestra.run.smithi144.stdout:Ceph version: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable) 2024-09-17T07:16:02.232 INFO:teuthology.orchestra.run.smithi144.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T07:16:03.161 INFO:teuthology.orchestra.run.smithi144.stdout:stat: stdout 167 167 2024-09-17T07:16:03.162 INFO:teuthology.orchestra.run.smithi144.stdout:Creating initial keys... 2024-09-17T07:16:04.175 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph-authtool: stdout AQCzLOlmQAcNHxAASkoyS38AGWO2EzsxokH82w== 2024-09-17T07:16:05.139 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph-authtool: stdout AQC0LOlmH012IBAAOxKXk9B1KFWBID60I8ADLQ== 2024-09-17T07:16:06.019 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph-authtool: stdout AQC1LOlmL4+yHRAAKaoTdFA5WbIsKB5JR+Yc9A== 2024-09-17T07:16:06.020 INFO:teuthology.orchestra.run.smithi144.stdout:Creating initial monmap... 2024-09-17T07:16:07.067 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T07:16:07.067 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:monmaptool for smithi144 [v2:172.21.15.144:3300,v1:172.21.15.144:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:setting min_mon_release = pacific 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: set fsid to 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:16:07.068 INFO:teuthology.orchestra.run.smithi144.stdout:Creating mon... 2024-09-17T07:16:08.031 INFO:teuthology.orchestra.run.smithi144.stdout:create mon.smithi144 on 2024-09-17T07:16:08.389 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T07:16:08.572 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target. 2024-09-17T07:16:08.572 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target. 2024-09-17T07:16:08.800 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144 2024-09-17T07:16:08.801 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Failed to reset failed state of unit ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service: Unit ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service not loaded. 2024-09-17T07:16:08.977 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target.wants/ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service → /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968@.service. 2024-09-17T07:16:09.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:09 smithi144 podman[25336]: 2024-09-17 07:16:09.446050365 +0000 UTC m=+0.360222527 container start ab220e35a9d588ccd4f6e563cbf34d375e96e9b6d020ccca0a9729b5d6131dba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, RELEASE=reef-19e2a2b) 2024-09-17T07:16:09.530 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T07:16:09.530 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout disabled 2024-09-17T07:16:09.537 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T07:16:09.537 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:16:09.537 INFO:teuthology.orchestra.run.smithi144.stdout:firewalld.service is not enabled 2024-09-17T07:16:09.537 INFO:teuthology.orchestra.run.smithi144.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T07:16:09.538 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mon to start... 2024-09-17T07:16:09.538 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mon... 2024-09-17T07:16:09.742 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:09 smithi144 ceph-mon[25374]: mkfs 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:09.743 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:09 smithi144 ceph-mon[25374]: mon.smithi144 is new leader, mons smithi144 in quorum (ranks 0) 2024-09-17T07:16:09.743 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:09 smithi144 bash[25336]: ab220e35a9d588ccd4f6e563cbf34d375e96e9b6d020ccca0a9729b5d6131dba 2024-09-17T07:16:09.743 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:09 smithi144 systemd[1]: Started Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968. 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: mon.smithi144 is new leader, mons smithi144 in quorum (ranks 0) 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: monmap e1: 1 mons at {smithi144=[v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: fsmap 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: mgrmap e1: no daemons active 2024-09-17T07:16:10.593 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:10 smithi144 ceph-mon[25374]: from='client.? 172.21.15.144:0/317134937' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout id: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout services: 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi144 (age 0.531511s) 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:10.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout data: 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:mon is available 2024-09-17T07:16:10.598 INFO:teuthology.orchestra.run.smithi144.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T07:16:11.604 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:11 smithi144 ceph-mon[25374]: from='client.? 172.21.15.144:0/4190043140' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T07:16:11.604 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:11 smithi144 ceph-mon[25374]: from='client.? 172.21.15.144:0/4190043140' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T07:16:11.607 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout fsid = 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.144:3300,v1:172.21.15.144:6789] 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:11.608 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T07:16:11.609 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T07:16:11.609 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T07:16:11.609 INFO:teuthology.orchestra.run.smithi144.stdout:Generating new minimal ceph.conf... 2024-09-17T07:16:12.568 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:12 smithi144 ceph-mon[25374]: from='client.? 172.21.15.144:0/1321019850' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:16:12.573 INFO:teuthology.orchestra.run.smithi144.stdout:Restarting the monitor... 2024-09-17T07:16:12.857 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:12 smithi144 systemd[1]: Stopping Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968... 2024-09-17T07:16:13.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:12 smithi144 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144[25351]: 2024-09-17T07:16:12.856+0000 7f0af3f38640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi144 -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-17T07:16:13.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:12 smithi144 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144[25351]: 2024-09-17T07:16:12.856+0000 7f0af3f38640 -1 mon.smithi144@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T07:16:13.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 podman[25688]: 2024-09-17 07:16:13.010299659 +0000 UTC m=+0.272885729 container died ab220e35a9d588ccd4f6e563cbf34d375e96e9b6d020ccca0a9729b5d6131dba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, RELEASE=reef-19e2a2b, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T07:16:13.613 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 podman[25688]: 2024-09-17 07:16:13.370657957 +0000 UTC m=+0.633244025 container cleanup ab220e35a9d588ccd4f6e563cbf34d375e96e9b6d020ccca0a9729b5d6131dba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True) 2024-09-17T07:16:13.614 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 bash[25688]: ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144 2024-09-17T07:16:13.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 podman[25704]: 2024-09-17 07:16:13.613459669 +0000 UTC m=+0.601704844 container remove ab220e35a9d588ccd4f6e563cbf34d375e96e9b6d020ccca0a9729b5d6131dba (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, RELEASE=reef-19e2a2b, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, io.buildah.version=1.37.2) 2024-09-17T07:16:13.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 systemd[1]: ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service: Deactivated successfully. 2024-09-17T07:16:13.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 systemd[1]: Stopped Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968. 2024-09-17T07:16:13.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 systemd[1]: Starting Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968... 2024-09-17T07:16:14.166 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 podman[25803]: 2024-09-17 07:16:13.859917396 +0000 UTC m=+0.015884778 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 2024-09-17T07:16:14.167 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:13 smithi144 podman[25803]: 2024-09-17 07:16:13.981163714 +0000 UTC m=+0.137131128 container create 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, ceph=True, CEPH_POINT_RELEASE=, GIT_CLEAN=True, RELEASE=reef-19e2a2b, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-17T07:16:14.167 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 podman[25803]: 2024-09-17 07:16:14.16660246 +0000 UTC m=+0.322569848 container init 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, CEPH_POINT_RELEASE=, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=reef-19e2a2b, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T07:16:14.228 INFO:teuthology.orchestra.run.smithi144.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T07:16:14.435 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 podman[25803]: 2024-09-17 07:16:14.171212649 +0000 UTC m=+0.327180021 container start 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True, RELEASE=reef-19e2a2b, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS) 2024-09-17T07:16:14.435 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: pidfile_write: ignore empty --pid-file 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: load: jerasure load: lrc 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: RocksDB version: 7.9.2 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Git sha 0 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: DB SUMMARY 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: DB Session ID: UJJ94TEK7ACWR1NMC58K 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: CURRENT file: CURRENT 2024-09-17T07:16:14.436 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi144/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi144/store.db: 000009.log size: 83842 ; 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.error_if_exists: 0 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.create_if_missing: 0 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.paranoid_checks: 1 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.env: 0x560782fe0bc0 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.info_log: 0x5607854c8dc0 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T07:16:14.437 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.statistics: (nil) 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.use_fsync: 0 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_log_file_size: 0 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T07:16:14.438 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_fallocate: 1 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.use_direct_reads: 0 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T07:16:14.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.db_log_dir: 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.wal_dir: 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.write_buffer_manager: 0x5607854d6320 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T07:16:14.440 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.unordered_write: 0 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T07:16:14.441 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.row_cache: None 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.wal_filter: None 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.two_write_queues: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.wal_compression: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.atomic_flush: 0 2024-09-17T07:16:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.log_readahead_size: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_background_jobs: 2 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_background_compactions: -1 2024-09-17T07:16:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_subcompactions: 1 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_open_files: -1 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T07:16:14.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_background_flushes: -1 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Compression algorithms supported: 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kZSTD supported: 0 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kXpressCompression supported: 0 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kBZip2Compression supported: 0 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kLZ4Compression supported: 1 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kZlibCompression supported: 1 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: kSnappyCompression supported: 1 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T07:16:14.445 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi144/store.db/MANIFEST-000010 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.merge_operator: 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_filter: None 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5607854c8a20) 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: cache_index_and_filter_blocks: 1 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T07:16:14.446 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: pin_top_level_index_and_filter: 1 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: index_type: 0 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: data_block_index_type: 0 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: index_shortening: 1 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: checksum: 4 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: no_block_cache: 0 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_cache: 0x5607854bd1f0 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_cache_name: BinnedLRUCache 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_cache_options: 2024-09-17T07:16:14.447 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: capacity : 536870912 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: num_shard_bits : 4 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: strict_capacity_limit : 0 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: high_pri_pool_ratio: 0.000 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_cache_compressed: (nil) 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: persistent_cache: (nil) 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_size: 4096 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_size_deviation: 10 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_restart_interval: 16 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: index_block_restart_interval: 1 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: metadata_block_size: 4096 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: partition_filters: 0 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: use_delta_encoding: 1 2024-09-17T07:16:14.448 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: filter_policy: bloomfilter 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: whole_key_filtering: 1 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: verify_compression: 0 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: read_amp_bytes_per_bit: 0 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: format_version: 5 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: enable_index_compression: 1 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: block_align: 0 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: max_auto_readahead_size: 262144 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: prepopulate_block_cache: 0 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: initial_auto_readahead_size: 8192 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T07:16:14.449 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression: NoCompression 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.num_levels: 7 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T07:16:14.450 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T07:16:14.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T07:16:14.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T07:16:14.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T07:16:14.454 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.inplace_update_support: 0 2024-09-17T07:16:14.455 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.bloom_locality: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.max_successive_merges: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.ttl: 2592000 2024-09-17T07:16:14.456 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enable_blob_files: false 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.min_blob_size: 0 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T07:16:14.457 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T07:16:14.458 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi144/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-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: e12db9ad-143a-4813-beba-7b5b5adb2a9c 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557374198450, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T07:16:14.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557374199372, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80640, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 248, "table_properties": {"data_size": 78797, "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": 9753, "raw_average_key_size": 47, "raw_value_size": 73217, "raw_average_value_size": 353, "num_data_blocks": 10, "num_entries": 207, "num_filter_entries": 207, "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": 1726557374, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e12db9ad-143a-4813-beba-7b5b5adb2a9c", "db_session_id": "UJJ94TEK7ACWR1NMC58K", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557374199498, "job": 1, "event": "recovery_finished"} 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi144/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5607854e8e00 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: DB pointer 0x5607855de000 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ** DB Stats ** 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ** Compaction Stats [default] ** 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: L0 2/0 80.65 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Sum 2/0 80.65 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 121.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.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 121.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ** Compaction Stats [default] ** 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.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 121.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T07:16:14.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Cumulative compaction: 0.00 GB write, 24.91 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Interval compaction: 0.00 GB write, 24.91 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Block cache BinnedLRUCache@0x5607854bd1f0#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-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: starting mon.smithi144 rank 0 at public addrs [v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0] at bind addrs [v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi144 fsid 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:14.463 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???) e1 preinit fsid 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).mds e1 new map 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).mds e1 print_map 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: e1 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.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-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: legacy client fscid: -1 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: No filesystems configured 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:16:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 bash[25803]: 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 systemd[1]: Started Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968. 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mon.smithi144 is new leader, mons smithi144 in quorum (ranks 0) 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: monmap e1: 1 mons at {smithi144=[v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: fsmap 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T07:16:14.465 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:14 smithi144 ceph-mon[25842]: mgrmap e1: no daemons active 2024-09-17T07:16:15.259 INFO:teuthology.orchestra.run.smithi144.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T07:16:15.281 INFO:teuthology.orchestra.run.smithi144.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:16:15.281 INFO:teuthology.orchestra.run.smithi144.stdout:Creating mgr... 2024-09-17T07:16:15.281 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T07:16:15.282 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T07:16:15.282 INFO:teuthology.orchestra.run.smithi144.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-17T07:16:15.541 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mgr.smithi144.lblkyt 2024-09-17T07:16:15.541 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Failed to reset failed state of unit ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mgr.smithi144.lblkyt.service: Unit ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mgr.smithi144.lblkyt.service not loaded. 2024-09-17T07:16:15.695 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968.target.wants/ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mgr.smithi144.lblkyt.service → /etc/systemd/system/ceph-95c1565a-74c4-11ef-bceb-c7b262605968@.service. 2024-09-17T07:16:16.015 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:15 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2694614847' entity='client.admin' 2024-09-17T07:16:16.224 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T07:16:16.224 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout disabled 2024-09-17T07:16:16.232 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T07:16:16.232 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:16:16.232 INFO:teuthology.orchestra.run.smithi144.stdout:firewalld.service is not enabled 2024-09-17T07:16:16.232 INFO:teuthology.orchestra.run.smithi144.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T07:16:16.240 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T07:16:16.241 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout disabled 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:firewalld.service is not enabled 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mgr to start... 2024-09-17T07:16:16.248 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mgr... 2024-09-17T07:16:17.058 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:16 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1259818441' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T07:16:17.358 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:17.358 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsid": "95c1565a-74c4-11ef-bceb-c7b262605968", 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 0 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T07:16:17.359 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "smithi144" 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T07:16:17.360 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.361 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T07:16:17.362 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:17.362 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T07:16:17.362 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T07:16:17.362 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.362 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.363 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T07:16:09.484482+0000", 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:16:17.364 INFO:teuthology.orchestra.run.smithi144.stdout:mgr not available, waiting (1/15)... 2024-09-17T07:16:20.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:19 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2099950290' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsid": "95c1565a-74c4-11ef-bceb-c7b262605968", 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T07:16:20.445 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 0 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "smithi144" 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T07:16:20.446 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T07:16:20.447 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T07:16:20.450 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T07:16:20.451 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T07:16:20.452 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T07:16:09.484482+0000", 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:16:20.453 INFO:teuthology.orchestra.run.smithi144.stdout:mgr not available, waiting (2/15)... 2024-09-17T07:16:21.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: Activating manager daemon smithi144.lblkyt 2024-09-17T07:16:21.385 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: mgrmap e2: smithi144.lblkyt(active, starting, since 0.0028328s) 2024-09-17T07:16:21.385 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T07:16:21.385 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi144.lblkyt", "id": "smithi144.lblkyt"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: Manager daemon smithi144.lblkyt is now available 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/mirror_snapshot_schedule"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/trash_purge_schedule"}]: dispatch 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:21.386 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:20 smithi144 ceph-mon[25842]: from='mgr.14100 172.21.15.144:0/4177910662' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:23.128 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:22 smithi144 ceph-mon[25842]: mgrmap e3: smithi144.lblkyt(active, since 1.00699s) 2024-09-17T07:16:23.591 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsid": "95c1565a-74c4-11ef-bceb-c7b262605968", 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 0 2024-09-17T07:16:23.592 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "smithi144" 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T07:16:23.593 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T07:16:23.594 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T07:16:23.597 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.598 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ], 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T07:16:09.484482+0000", 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T07:16:23.599 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout }, 2024-09-17T07:16:23.600 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T07:16:23.600 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:16:23.600 INFO:teuthology.orchestra.run.smithi144.stdout:mgr is available 2024-09-17T07:16:23.973 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:23 smithi144 ceph-mon[25842]: mgrmap e4: smithi144.lblkyt(active, since 2s) 2024-09-17T07:16:23.974 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:23 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2723126360' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-17T07:16:25.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:24 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/219939166' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-17T07:16:28.355 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:28.355 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout fsid = 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T07:16:28.356 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T07:16:28.357 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T07:16:28.357 INFO:teuthology.orchestra.run.smithi144.stdout:Enabling cephadm module... 2024-09-17T07:16:32.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:32 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1898897060' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-17T07:16:33.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:33 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1898897060' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T07:16:33.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:33 smithi144 ceph-mon[25842]: mgrmap e5: smithi144.lblkyt(active, since 11s) 2024-09-17T07:16:37.040 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: Active manager daemon smithi144.lblkyt restarted 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: Activating manager daemon smithi144.lblkyt 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: mgrmap e6: smithi144.lblkyt(active, starting, since 0.00288929s) 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi144.lblkyt", "id": "smithi144.lblkyt"}]: dispatch 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: Manager daemon smithi144.lblkyt is now available 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:37.041 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:16:37.042 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:16:37.042 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/mirror_snapshot_schedule"}]: dispatch 2024-09-17T07:16:37.042 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:36 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/trash_purge_schedule"}]: dispatch 2024-09-17T07:16:38.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:37 smithi144 ceph-mon[25842]: Found migration_current of "None". Setting to last migration. 2024-09-17T07:16:38.066 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:37 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4140107052' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T07:16:38.066 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:37 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:38.066 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:37 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:38.066 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:37 smithi144 ceph-mon[25842]: mgrmap e7: smithi144.lblkyt(active, since 1.00569s) 2024-09-17T07:16:38.069 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:16:38.070 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 6, 2024-09-17T07:16:38.070 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T07:16:38.070 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "active_name": "smithi144.lblkyt", 2024-09-17T07:16:38.070 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T07:16:38.070 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:16:38.071 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for the mgr to restart... 2024-09-17T07:16:38.071 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mgr epoch 6... 2024-09-17T07:16:39.041 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:16:39.042 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T07:16:39.042 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T07:16:39.042 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:16:39.042 INFO:teuthology.orchestra.run.smithi144.stdout:mgr epoch 6 is available 2024-09-17T07:16:39.042 INFO:teuthology.orchestra.run.smithi144.stdout:Setting orchestrator backend to cephadm... 2024-09-17T07:16:39.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:38 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:16:39.994 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: from='client.14128 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: from='client.14128 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: [17/Sep/2024:07:16:38] ENGINE Bus STARTING 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: [17/Sep/2024:07:16:38] ENGINE Serving on http://172.21.15.144:8765 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: [17/Sep/2024:07:16:38] ENGINE Serving on https://172.21.15.144:7150 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: [17/Sep/2024:07:16:38] ENGINE Bus STARTED 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: [17/Sep/2024:07:16:38] ENGINE Error in HTTPServer.serve 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Traceback (most recent call last): 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._connections.run(self.expiration_interval) 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._run(expiration_interval) 2024-09-17T07:16:39.995 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s = self.context.wrap_socket( 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: return self.sslsocket_class._create( 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self.do_handshake() 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._sslobj.do_handshake() 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T07:16:39.996 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: mgrmap e8: smithi144.lblkyt(active, since 2s) 2024-09-17T07:16:39.997 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:39.997 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:39 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:16:41.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:40 smithi144 ceph-mon[25842]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:41.429 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T07:16:41.429 INFO:teuthology.orchestra.run.smithi144.stdout:Generating ssh key... 2024-09-17T07:16:42.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:41 smithi144 ceph-mon[25842]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:43.061 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:42 smithi144 ceph-mon[25842]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:43.061 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:42 smithi144 ceph-mon[25842]: Generating ssh key... 2024-09-17T07:16:43.062 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:42 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:43.062 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:42 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:44.049 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPLGqMtp9LpWx9eVmOy+zvmnFLB57woKUSEta1ND5Qqayyi9fJMEPuIOJQSVoJFN3PVBhAdIndi15dwbCkqrROIeTz6IFO6EGimkMFi7WLc8oH8Zs8jp0Xljg0CbQETu3PQ4CNEuiYQYA0tmRPBR7wxApZ0ulJ1WT97qnTapuaWvRQGQy6JlnkIVhNzy/proc2c32R/lLCV4EKUDnZX2HaIfryO57wu8ixueAR2RhMstBJplvTGZvDopBV+BqpTA28CQZD67iHhbQ2Z80081mQPEvIQSyVe3wdO8zpUhSYyTxFA3usNjMGTcZqVzodn+ap/X7IQ+2FyPt70j9kqlfaFaKF0yFLRlFggPQBglUB5MZHY/p15CsHoc+i3gDPLSDJvl3Sk4+8YMzlBQ/nyayPPxvGY2uFXtG9Yfzm1fc4M7lP4aENEsQW5K21rF5reKB66hhV+2hKkiLnVYCox391QwB9Uzi6Medbxv472O3ENXjVPabufOP3H6d0Im9hTME= ceph-95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:16:44.050 INFO:teuthology.orchestra.run.smithi144.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T07:16:44.050 INFO:teuthology.orchestra.run.smithi144.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T07:16:44.057 INFO:teuthology.orchestra.run.smithi144.stdout:Adding host smithi144... 2024-09-17T07:16:44.305 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:44 smithi144 ceph-mon[25842]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:45.493 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:45 smithi144 ceph-mon[25842]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi144", "addr": "172.21.15.144", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:46.268 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:46 smithi144 ceph-mon[25842]: Deploying cephadm binary to smithi144 2024-09-17T07:16:47.916 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Added host 'smithi144' with addr '172.21.15.144' 2024-09-17T07:16:47.916 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying mon service with default placement... 2024-09-17T07:16:48.596 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:48 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:48.597 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:48 smithi144 ceph-mon[25842]: Added host smithi144 2024-09-17T07:16:48.597 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:48 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:16:49.978 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:49 smithi144 ceph-mon[25842]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:49.978 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:49 smithi144 ceph-mon[25842]: Saving service mon spec with placement count:5 2024-09-17T07:16:49.978 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:49 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:49.978 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:49 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:49.978 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:49 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:49.980 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T07:16:49.980 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying mgr service with default placement... 2024-09-17T07:16:51.838 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:51 smithi144 ceph-mon[25842]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:51.838 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:51 smithi144 ceph-mon[25842]: Saving service mgr spec with placement count:2 2024-09-17T07:16:51.838 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:51 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:51.839 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:51 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:51.841 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T07:16:51.841 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying crash service with default placement... 2024-09-17T07:16:53.105 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-17T07:16:53.105 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying ceph-exporter service with default placement... 2024-09-17T07:16:53.728 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:53 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:53.728 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:53 smithi144 ceph-mon[25842]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:53.729 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:53 smithi144 ceph-mon[25842]: Saving service crash spec with placement * 2024-09-17T07:16:53.729 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:53 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:54.740 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:54 smithi144 ceph-mon[25842]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:54.740 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:54 smithi144 ceph-mon[25842]: Saving service ceph-exporter spec with placement * 2024-09-17T07:16:54.741 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:54 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:54.741 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-17T07:16:54.741 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying prometheus service with default placement... 2024-09-17T07:16:56.339 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-17T07:16:56.340 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying grafana service with default placement... 2024-09-17T07:16:56.980 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:56 smithi144 ceph-mon[25842]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:56.980 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:56 smithi144 ceph-mon[25842]: Saving service prometheus spec with placement count:1 2024-09-17T07:16:56.980 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:56 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:57.571 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-17T07:16:57.571 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying node-exporter service with default placement... 2024-09-17T07:16:58.170 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:57 smithi144 ceph-mon[25842]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:16:58.170 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:57 smithi144 ceph-mon[25842]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:58.170 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:57 smithi144 ceph-mon[25842]: Saving service grafana spec with placement count:1 2024-09-17T07:16:58.171 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:57 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:58.726 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-17T07:16:58.727 INFO:teuthology.orchestra.run.smithi144.stdout:Deploying alertmanager service with default placement... 2024-09-17T07:16:59.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:59 smithi144 ceph-mon[25842]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:16:59.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:59 smithi144 ceph-mon[25842]: Saving service node-exporter spec with placement * 2024-09-17T07:16:59.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:16:59 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:16:59.908 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-17T07:17:00.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:00 smithi144 ceph-mon[25842]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:00.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:00 smithi144 ceph-mon[25842]: from='mgr.14118 172.21.15.144:0/4099270862' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:01.489 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:01 smithi144 ceph-mon[25842]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:17:01.489 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:01 smithi144 ceph-mon[25842]: Saving service alertmanager spec with placement count:1 2024-09-17T07:17:01.489 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:01 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/60335499' entity='client.admin' 2024-09-17T07:17:02.286 INFO:teuthology.orchestra.run.smithi144.stdout:Enabling the dashboard module... 2024-09-17T07:17:02.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:02 smithi144 ceph-mon[25842]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:02.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:02 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1765062093' entity='client.admin' 2024-09-17T07:17:03.506 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:03 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4260609288' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-17T07:17:04.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:04 smithi144 ceph-mon[25842]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:04.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:04 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4260609288' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T07:17:04.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:04 smithi144 ceph-mon[25842]: mgrmap e9: smithi144.lblkyt(active, since 26s) 2024-09-17T07:17:05.083 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "active_name": "smithi144.lblkyt", 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for the mgr to restart... 2024-09-17T07:17:05.084 INFO:teuthology.orchestra.run.smithi144.stdout:Waiting for mgr epoch 9... 2024-09-17T07:17:05.336 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:05 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/229233402' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: Active manager daemon smithi144.lblkyt restarted 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: Activating manager daemon smithi144.lblkyt 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: mgrmap e10: smithi144.lblkyt(active, starting, since 0.0032182s) 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi144.lblkyt", "id": "smithi144.lblkyt"}]: dispatch 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T07:17:08.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T07:17:08.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: Manager daemon smithi144.lblkyt is now available 2024-09-17T07:17:08.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:17:08.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/mirror_snapshot_schedule"}]: dispatch 2024-09-17T07:17:08.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:08 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/trash_purge_schedule"}]: dispatch 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout { 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout } 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:mgr epoch 9 is available 2024-09-17T07:17:09.769 INFO:teuthology.orchestra.run.smithi144.stdout:Generating a dashboard self-signed certificate... 2024-09-17T07:17:10.126 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:10 smithi144 ceph-mon[25842]: mgrmap e11: smithi144.lblkyt(active, since 1.0054s) 2024-09-17T07:17:10.126 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:10 smithi144 ceph-mon[25842]: [17/Sep/2024:07:17:09] ENGINE Bus STARTING 2024-09-17T07:17:10.126 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:10 smithi144 ceph-mon[25842]: [17/Sep/2024:07:17:09] ENGINE Serving on http://172.21.15.144:8765 2024-09-17T07:17:10.126 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:10 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:11.063 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:17:09] ENGINE Serving on https://172.21.15.144:7150 2024-09-17T07:17:11.063 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:17:09] ENGINE Bus STARTED 2024-09-17T07:17:11.063 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:17:09] ENGINE Error in HTTPServer.serve 2024-09-17T07:17:11.063 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Traceback (most recent call last): 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._connections.run(self.expiration_interval) 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._run(expiration_interval) 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s = self.context.wrap_socket( 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: return self.sslsocket_class._create( 2024-09-17T07:17:11.064 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self.do_handshake() 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._sslobj.do_handshake() 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: mgrmap e12: smithi144.lblkyt(active, since 2s) 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:11.065 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:11 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:11.066 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-17T07:17:11.066 INFO:teuthology.orchestra.run.smithi144.stdout:Creating initial admin user... 2024-09-17T07:17:12.338 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:12 smithi144 ceph-mon[25842]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:17:12.338 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:12 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:13.124 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:13 smithi144 ceph-mon[25842]: 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-17T07:17:13.127 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$mT6BNaHxpxcsDZjlHKzIi.QcahNNrEEAouFScLxDVnNy6iANJex3y", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726557431, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T07:17:13.127 INFO:teuthology.orchestra.run.smithi144.stdout:Fetching dashboard port number... 2024-09-17T07:17:14.289 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:14 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3770278874' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-17T07:17:14.292 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T07:17:14.301 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T07:17:14.301 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout disabled 2024-09-17T07:17:14.308 INFO:teuthology.orchestra.run.smithi144.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T07:17:14.308 INFO:teuthology.orchestra.run.smithi144.stdout:systemctl: stdout inactive 2024-09-17T07:17:14.308 INFO:teuthology.orchestra.run.smithi144.stdout:firewalld.service is not enabled 2024-09-17T07:17:14.308 INFO:teuthology.orchestra.run.smithi144.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout:Ceph Dashboard is now available at: 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout: URL: https://smithi144.front.sepia.ceph.com:8443/ 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout: User: admin 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout: Password: xqlq9ant83 2024-09-17T07:17:14.310 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:14.311 INFO:teuthology.orchestra.run.smithi144.stdout:Saving cluster configuration to /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config directory 2024-09-17T07:17:14.311 INFO:teuthology.orchestra.run.smithi144.stdout:Enabling autotune for osd_memory_target 2024-09-17T07:17:15.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:15 smithi144 ceph-mon[25842]: mgrmap e13: smithi144.lblkyt(active, since 6s) 2024-09-17T07:17:16.537 INFO:teuthology.orchestra.run.smithi144.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T07:17:16.537 INFO:teuthology.orchestra.run.smithi144.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: ceph telemetry on 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout:For more information see: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.538 INFO:teuthology.orchestra.run.smithi144.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T07:17:16.539 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:16.539 INFO:teuthology.orchestra.run.smithi144.stdout:Bootstrap complete. 2024-09-17T07:17:16.572 INFO:tasks.cephadm:Fetching config... 2024-09-17T07:17:16.572 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:17:16.572 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T07:17:16.588 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T07:17:16.588 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:17:16.588 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T07:17:16.643 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T07:17:16.644 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:17:16.644 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/keyring of=/dev/stdout 2024-09-17T07:17:16.708 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T07:17:16.708 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:17:16.708 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T07:17:16.764 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T07:17:16.764 DEBUG:teuthology.orchestra.run.smithi144:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPLGqMtp9LpWx9eVmOy+zvmnFLB57woKUSEta1ND5Qqayyi9fJMEPuIOJQSVoJFN3PVBhAdIndi15dwbCkqrROIeTz6IFO6EGimkMFi7WLc8oH8Zs8jp0Xljg0CbQETu3PQ4CNEuiYQYA0tmRPBR7wxApZ0ulJ1WT97qnTapuaWvRQGQy6JlnkIVhNzy/proc2c32R/lLCV4EKUDnZX2HaIfryO57wu8ixueAR2RhMstBJplvTGZvDopBV+BqpTA28CQZD67iHhbQ2Z80081mQPEvIQSyVe3wdO8zpUhSYyTxFA3usNjMGTcZqVzodn+ap/X7IQ+2FyPt70j9kqlfaFaKF0yFLRlFggPQBglUB5MZHY/p15CsHoc+i3gDPLSDJvl3Sk4+8YMzlBQ/nyayPPxvGY2uFXtG9Yfzm1fc4M7lP4aENEsQW5K21rF5reKB66hhV+2hKkiLnVYCox391QwB9Uzi6Medbxv472O3ENXjVPabufOP3H6d0Im9hTME= ceph-95c1565a-74c4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T07:17:16.838 INFO:teuthology.orchestra.run.smithi144.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPLGqMtp9LpWx9eVmOy+zvmnFLB57woKUSEta1ND5Qqayyi9fJMEPuIOJQSVoJFN3PVBhAdIndi15dwbCkqrROIeTz6IFO6EGimkMFi7WLc8oH8Zs8jp0Xljg0CbQETu3PQ4CNEuiYQYA0tmRPBR7wxApZ0ulJ1WT97qnTapuaWvRQGQy6JlnkIVhNzy/proc2c32R/lLCV4EKUDnZX2HaIfryO57wu8ixueAR2RhMstBJplvTGZvDopBV+BqpTA28CQZD67iHhbQ2Z80081mQPEvIQSyVe3wdO8zpUhSYyTxFA3usNjMGTcZqVzodn+ap/X7IQ+2FyPt70j9kqlfaFaKF0yFLRlFggPQBglUB5MZHY/p15CsHoc+i3gDPLSDJvl3Sk4+8YMzlBQ/nyayPPxvGY2uFXtG9Yfzm1fc4M7lP4aENEsQW5K21rF5reKB66hhV+2hKkiLnVYCox391QwB9Uzi6Medbxv472O3ENXjVPabufOP3H6d0Im9hTME= ceph-95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:17:16.858 DEBUG:teuthology.orchestra.run.smithi175:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPLGqMtp9LpWx9eVmOy+zvmnFLB57woKUSEta1ND5Qqayyi9fJMEPuIOJQSVoJFN3PVBhAdIndi15dwbCkqrROIeTz6IFO6EGimkMFi7WLc8oH8Zs8jp0Xljg0CbQETu3PQ4CNEuiYQYA0tmRPBR7wxApZ0ulJ1WT97qnTapuaWvRQGQy6JlnkIVhNzy/proc2c32R/lLCV4EKUDnZX2HaIfryO57wu8ixueAR2RhMstBJplvTGZvDopBV+BqpTA28CQZD67iHhbQ2Z80081mQPEvIQSyVe3wdO8zpUhSYyTxFA3usNjMGTcZqVzodn+ap/X7IQ+2FyPt70j9kqlfaFaKF0yFLRlFggPQBglUB5MZHY/p15CsHoc+i3gDPLSDJvl3Sk4+8YMzlBQ/nyayPPxvGY2uFXtG9Yfzm1fc4M7lP4aENEsQW5K21rF5reKB66hhV+2hKkiLnVYCox391QwB9Uzi6Medbxv472O3ENXjVPabufOP3H6d0Im9hTME= ceph-95c1565a-74c4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T07:17:16.911 INFO:teuthology.orchestra.run.smithi175.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPLGqMtp9LpWx9eVmOy+zvmnFLB57woKUSEta1ND5Qqayyi9fJMEPuIOJQSVoJFN3PVBhAdIndi15dwbCkqrROIeTz6IFO6EGimkMFi7WLc8oH8Zs8jp0Xljg0CbQETu3PQ4CNEuiYQYA0tmRPBR7wxApZ0ulJ1WT97qnTapuaWvRQGQy6JlnkIVhNzy/proc2c32R/lLCV4EKUDnZX2HaIfryO57wu8ixueAR2RhMstBJplvTGZvDopBV+BqpTA28CQZD67iHhbQ2Z80081mQPEvIQSyVe3wdO8zpUhSYyTxFA3usNjMGTcZqVzodn+ap/X7IQ+2FyPt70j9kqlfaFaKF0yFLRlFggPQBglUB5MZHY/p15CsHoc+i3gDPLSDJvl3Sk4+8YMzlBQ/nyayPPxvGY2uFXtG9Yfzm1fc4M7lP4aENEsQW5K21rF5reKB66hhV+2hKkiLnVYCox391QwB9Uzi6Medbxv472O3ENXjVPabufOP3H6d0Im9hTME= ceph-95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:17:16.925 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T07:17:17.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:17 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3549322070' entity='client.admin' 2024-09-17T07:17:17.197 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi144", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi144", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi144", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:17:19.701 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:19 smithi144 ceph-mon[25842]: Deploying daemon ceph-exporter.smithi144 on smithi144 2024-09-17T07:17:20.329 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T07:17:20.329 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T07:17:21.004 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:20 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3615687840' entity='client.admin' 2024-09-17T07:17:21.670 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:17:24.618 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi175 2024-09-17T07:17:24.618 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:17:24.618 DEBUG:teuthology.orchestra.run.smithi175:> dd of=/etc/ceph/ceph.conf 2024-09-17T07:17:24.638 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:17:24.638 DEBUG:teuthology.orchestra.run.smithi175:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:17:24.695 INFO:tasks.cephadm:Adding host smithi175 to orchestrator... 2024-09-17T07:17:24.696 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch host add smithi175 2024-09-17T07:17:25.278 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:17:25.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi144", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi144", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:17:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:24 smithi144 ceph-mon[25842]: Deploying daemon crash.smithi144 on smithi144 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi175", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: Deploying daemon node-exporter.smithi144 on smithi144 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:29.046 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:28 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:30.059 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:29 smithi144 ceph-mon[25842]: Deploying cephadm binary to smithi175 2024-09-17T07:17:30.127 INFO:teuthology.orchestra.run.smithi144.stdout:Added host 'smithi175' with addr '172.21.15.175' 2024-09-17T07:17:31.216 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T07:17:31.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:31 smithi144 ceph-mon[25842]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:31.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:31 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:31.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:31 smithi144 ceph-mon[25842]: Added host smithi175 2024-09-17T07:17:31.683 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:17:32.830 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:32.830 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:32.830 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:32.830 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:32.831 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: Deploying daemon alertmanager.smithi144 on smithi144 2024-09-17T07:17:32.831 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:32 smithi144 ceph-mon[25842]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:33.494 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:17:33.494 INFO:teuthology.orchestra.run.smithi144.stdout:[{"addr": "172.21.15.144", "hostname": "smithi144", "labels": [], "status": ""}, {"addr": "172.21.15.175", "hostname": "smithi175", "labels": [], "status": ""}] 2024-09-17T07:17:34.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:34 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:34.422 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T07:17:34.423 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T07:17:34.621 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:17:35.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:35 smithi144 ceph-mon[25842]: from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:17:35.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:35 smithi144 ceph-mon[25842]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:37.251 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:37 smithi144 ceph-mon[25842]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:38.054 INFO:teuthology.orchestra.run.smithi144.stderr:adjusted tunables profile to default 2024-09-17T07:17:38.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:38 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3163048616' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T07:17:39.291 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:39 smithi144 ceph-mon[25842]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:39.292 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:39 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3163048616' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T07:17:39.292 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:39 smithi144 ceph-mon[25842]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T07:17:40.126 INFO:tasks.cephadm:Adding mon.smithi144 on smithi144 2024-09-17T07:17:40.126 INFO:tasks.cephadm:Adding mon.smithi175 on smithi175 2024-09-17T07:17:40.126 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch apply mon '2;smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175' 2024-09-17T07:17:40.320 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:40.363 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:41.304 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:41 smithi144 ceph-mon[25842]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:42.173 INFO:teuthology.orchestra.run.smithi175.stdout:Scheduled mon update... 2024-09-17T07:17:42.688 DEBUG:teuthology.orchestra.run.smithi175:mon.smithi175> sudo journalctl -f -n 0 -u ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi175.service 2024-09-17T07:17:42.690 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:17:42.690 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:17:42.911 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:42.953 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: Saving service mon spec with placement smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175;count:2 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:43.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:43 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:44.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:44 smithi144 ceph-mon[25842]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T07:17:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:44 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T07:17:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:44 smithi144 ceph-mon[25842]: Deploying daemon grafana.smithi144 on smithi144 2024-09-17T07:17:44.568 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:17:44.568 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:17:44.568 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:17:45.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:45 smithi144 ceph-mon[25842]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:45.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:45 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3739807400' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:17:46.089 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:17:46.090 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:17:46.284 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:46.333 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:47.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:47 smithi144 ceph-mon[25842]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:48.070 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:17:48.070 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:17:48.070 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:17:48.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:48 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3911975849' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:17:49.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:49 smithi144 ceph-mon[25842]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:49.595 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:17:49.595 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:17:49.776 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:49.819 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:51.458 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:51 smithi144 ceph-mon[25842]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:51.570 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:17:51.570 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:17:51.570 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:17:52.601 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:52 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1020575322' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:17:53.135 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:17:53.135 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:17:53.292 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:53 smithi144 ceph-mon[25842]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:53.329 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:53.372 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:54.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:54 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:55.074 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:17:55.074 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:17:55.075 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:17:55.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:55 smithi144 ceph-mon[25842]: Deploying daemon prometheus.smithi144 on smithi144 2024-09-17T07:17:55.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:55 smithi144 ceph-mon[25842]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:55.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:55 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/887495489' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:17:56.663 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:17:56.663 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:17:56.854 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:56.902 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:17:57.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:57 smithi144 ceph-mon[25842]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:58.570 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:17:58.570 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:17:58.570 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:17:59.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:59 smithi144 ceph-mon[25842]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:17:59.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:59 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:17:59.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:17:59 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3121622624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:00.165 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:00.165 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:00.349 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:00.391 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:01.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:01 smithi144 ceph-mon[25842]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:02.088 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:02.089 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:02.089 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:03.166 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:03 smithi144 ceph-mon[25842]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:03.166 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:03 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1410806094' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:03.624 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:03.625 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:03.821 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:03.863 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:04.320 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:04 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:04.320 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:04 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:04.320 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:04 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:04.320 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:04 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-17T07:18:04.320 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:04 smithi144 ceph-mon[25842]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:05.610 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:05.611 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:05.611 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:05.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:05 smithi144 ceph-mon[25842]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T07:18:05.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:05 smithi144 ceph-mon[25842]: mgrmap e14: smithi144.lblkyt(active, since 56s) 2024-09-17T07:18:06.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:06 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3626295637' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:07.179 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:07.179 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:07.375 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:07.418 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:09.031 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:09.031 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:09.031 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1625818181' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: Active manager daemon smithi144.lblkyt restarted 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: Activating manager daemon smithi144.lblkyt 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: mgrmap e15: smithi144.lblkyt(active, starting, since 0.00291237s) 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi144.lblkyt", "id": "smithi144.lblkyt"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T07:18:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: Manager daemon smithi144.lblkyt is now available 2024-09-17T07:18:09.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/mirror_snapshot_schedule"}]: dispatch 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/trash_purge_schedule"}]: dispatch 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: mgrmap e16: smithi144.lblkyt(active, since 1.0074s) 2024-09-17T07:18:10.299 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:10.738 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:10.738 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:11.357 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:18:10] ENGINE Bus STARTING 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:18:10] ENGINE Serving on https://172.21.15.144:7150 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:11 smithi144 ceph-mon[25842]: [17/Sep/2024:07:18:10] ENGINE Error in HTTPServer.serve 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: Traceback (most recent call last): 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._connections.run(self.expiration_interval) 2024-09-17T07:18:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._run(expiration_interval) 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: s = self.context.wrap_socket( 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: return self.sslsocket_class._create( 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self.do_handshake() 2024-09-17T07:18:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T07:18:11.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: self._sslobj.do_handshake() 2024-09-17T07:18:11.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T07:18:11.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:11.731 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:12 smithi144 ceph-mon[25842]: [17/Sep/2024:07:18:10] ENGINE Serving on http://172.21.15.144:8765 2024-09-17T07:18:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:12 smithi144 ceph-mon[25842]: [17/Sep/2024:07:18:10] ENGINE Bus STARTED 2024-09-17T07:18:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:12 smithi144 ceph-mon[25842]: mgrmap e17: smithi144.lblkyt(active, since 2s) 2024-09-17T07:18:14.373 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:14.373 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:14.373 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:15.255 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:15.255 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:15.255 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:15.256 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:15.256 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi175", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:18:15.256 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:14 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3387153299' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:15.937 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:15.937 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:16.132 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:16.175 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi144", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:17.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:18:18.102 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:18.102 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:18.102 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi144:/etc/ceph/ceph.conf 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi175:/etc/ceph/ceph.conf 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi144:/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: Updating smithi175:/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:18.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:18.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:18:18.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T07:18:18.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:18.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:18 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/2807732733' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:19.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:19 smithi144 ceph-mon[25842]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T07:18:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:19 smithi144 ceph-mon[25842]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T07:18:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:19 smithi144 ceph-mon[25842]: Deploying daemon ceph-exporter.smithi175 on smithi175 2024-09-17T07:18:20.061 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:20.062 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:20.401 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:22.090 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:22.090 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:22.090 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:22.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:22 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1389644999' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:23.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:23 smithi144 ceph-mon[25842]: Deploying daemon crash.smithi175 on smithi175 2024-09-17T07:18:23.913 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:23.913 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:24.129 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:25 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:25.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:25 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:25.959 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:25.959 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:25.959 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:26.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:26 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/827719413' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:27 smithi144 ceph-mon[25842]: Deploying daemon node-exporter.smithi175 on smithi175 2024-09-17T07:18:27.775 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:27.775 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:27.967 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:30 smithi144 ceph-mon[25842]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:30 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:31.203 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:31.203 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:31.203 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: Deploying daemon mgr.smithi175.okpzhb on smithi175 2024-09-17T07:18:32.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:32.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/529410269' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:33.603 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:33.603 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:34.346 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:34.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:35.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:35 smithi144 ceph-mon[25842]: Deploying daemon mon.smithi175 on smithi175 2024-09-17T07:18:36.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:36 smithi144 ceph-mon[25842]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:37.470 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:37.470 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":1,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:16:06.358576Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T07:18:37.471 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 1 2024-09-17T07:18:37.471 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 podman[34557]: 2024-09-17 07:18:37.359621216 +0000 UTC m=+0.016095737 image pull 980a0bfcd684674f25c08d857ad8de3b1c8ae738870529edbf9aa463832c8d89 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T07:18:37.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:37 smithi144 ceph-mon[25842]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.153 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 podman[34557]: 2024-09-17 07:18:37.849943386 +0000 UTC m=+0.506417915 container init 9a0f85788058e93c308c79137d39127925c667ecb754d9645a48fd17b980ee54 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=reef-19e2a2b, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS) 2024-09-17T07:18:38.153 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 podman[34557]: 2024-09-17 07:18:37.855208718 +0000 UTC m=+0.511683247 container start 9a0f85788058e93c308c79137d39127925c667ecb754d9645a48fd17b980ee54 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, RELEASE=reef-19e2a2b, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T07:18:38.153 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T07:18:38.153 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: ceph version 18.2.4-855-g19e2a2be (19e2a2beb6f41a3ab62650e38614eb29b59dcbb9) reef (stable), process ceph-mon, pid 7 2024-09-17T07:18:38.153 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pidfile_write: ignore empty --pid-file 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: load: jerasure load: lrc 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: RocksDB version: 7.9.2 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Git sha 0 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Compile date 2024-09-16 15:15:13 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: DB SUMMARY 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: DB Session ID: P443AC9U86I7MXRDZ83Y 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: CURRENT file: CURRENT 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi175/store.db dir, Total Num: 0, files: 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi175/store.db: 000004.log size: 511 ; 2024-09-17T07:18:38.154 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.error_if_exists: 0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.create_if_missing: 0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.paranoid_checks: 1 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.env: 0x55913f4c4bc0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.info_log: 0x559141968dc0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.statistics: (nil) 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.use_fsync: 0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_log_file_size: 0 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T07:18:38.155 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_fallocate: 1 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.use_direct_reads: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.db_log_dir: 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.wal_dir: 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T07:18:38.156 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.write_buffer_manager: 0x559141976320 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T07:18:38.157 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.unordered_write: 0 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.row_cache: None 2024-09-17T07:18:38.158 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.wal_filter: None 2024-09-17T07:18:38.160 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T07:18:38.160 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T07:18:38.160 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.two_write_queues: 0 2024-09-17T07:18:38.160 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T07:18:38.160 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.wal_compression: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.atomic_flush: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.log_readahead_size: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T07:18:38.161 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_background_jobs: 2 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_background_compactions: -1 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_subcompactions: 1 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_open_files: -1 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T07:18:38.162 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_background_flushes: -1 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Compression algorithms supported: 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kZSTD supported: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kXpressCompression supported: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kBZip2Compression supported: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kLZ4Compression supported: 1 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kZlibCompression supported: 1 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: kSnappyCompression supported: 1 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T07:18:38.163 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi175/store.db/MANIFEST-000005 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.merge_operator: 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_filter: None 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559141968a20) 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: cache_index_and_filter_blocks: 1 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: pin_top_level_index_and_filter: 1 2024-09-17T07:18:38.164 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: index_type: 0 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: data_block_index_type: 0 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: index_shortening: 1 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: checksum: 4 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: no_block_cache: 0 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_cache: 0x55914195d350 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_cache_name: BinnedLRUCache 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_cache_options: 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: capacity : 536870912 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: num_shard_bits : 4 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: strict_capacity_limit : 0 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: high_pri_pool_ratio: 0.000 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_cache_compressed: (nil) 2024-09-17T07:18:38.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: persistent_cache: (nil) 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_size: 4096 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_size_deviation: 10 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_restart_interval: 16 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: index_block_restart_interval: 1 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: metadata_block_size: 4096 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: partition_filters: 0 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: use_delta_encoding: 1 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: filter_policy: bloomfilter 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: whole_key_filtering: 1 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: verify_compression: 0 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: read_amp_bytes_per_bit: 0 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: format_version: 5 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: enable_index_compression: 1 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: block_align: 0 2024-09-17T07:18:38.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: max_auto_readahead_size: 262144 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: prepopulate_block_cache: 0 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: initial_auto_readahead_size: 8192 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression: NoCompression 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.num_levels: 7 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T07:18:38.167 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T07:18:38.168 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T07:18:38.169 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T07:18:38.170 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.inplace_update_support: 0 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T07:18:38.171 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.bloom_locality: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.max_successive_merges: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.ttl: 2592000 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enable_blob_files: false 2024-09-17T07:18:38.172 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.min_blob_size: 0 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi175/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-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 7c43de58-aa54-4aa3-ad8d-fcecb8644f0d 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557517881530, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T07:18:38.173 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557517881939, "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": 1726557517, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "7c43de58-aa54-4aa3-ad8d-fcecb8644f0d", "db_session_id": "P443AC9U86I7MXRDZ83Y", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726557517882031, "job": 1, "event": "recovery_finished"} 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi175/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x559141988e00 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: DB pointer 0x559141a7e000 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ** DB Stats ** 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T07:18:38.174 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ** Compaction Stats [default] ** 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ** Compaction Stats [default] ** 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.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 4.0 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T07:18:38.175 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Cumulative compaction: 0.00 GB write, 0.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Interval compaction: 0.00 GB write, 0.61 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Block cache BinnedLRUCache@0x55914195d350#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-17T07:18:38.176 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175 does not exist in monmap, will attempt to join an existing cluster 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: using public_addr v2:172.21.15.175:0/0 -> [v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0] 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: starting mon.smithi175 rank -1 at public addrs [v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0] at bind addrs [v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi175 fsid 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(???) e0 preinit fsid 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).mds e1 new map 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).mds e1 print_map 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: e1 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.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-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: legacy client fscid: -1 2024-09-17T07:18:38.177 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: No filesystems configured 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T07:18:38.178 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying cephadm binary to smithi175 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Added host smithi175 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon alertmanager.smithi144 on smithi144 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.179 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3163048616' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3163048616' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Saving service mon spec with placement smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175;count:2 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.180 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon grafana.smithi144 on smithi144 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3739807400' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3911975849' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.181 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1020575322' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon prometheus.smithi144 on smithi144 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.182 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/887495489' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3121622624' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1410806094' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14162 172.21.15.144:0/3927031610' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T07:18:38.183 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mgrmap e14: smithi144.lblkyt(active, since 56s) 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3626295637' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1625818181' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Active manager daemon smithi144.lblkyt restarted 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Activating manager daemon smithi144.lblkyt 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mgrmap e15: smithi144.lblkyt(active, starting, since 0.00291237s) 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi144.lblkyt", "id": "smithi144.lblkyt"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-17T07:18:38.184 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Manager daemon smithi144.lblkyt is now available 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/mirror_snapshot_schedule"}]: dispatch 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi144.lblkyt/trash_purge_schedule"}]: dispatch 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mgrmap e16: smithi144.lblkyt(active, since 1.0074s) 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: [17/Sep/2024:07:18:10] ENGINE Bus STARTING 2024-09-17T07:18:38.185 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: [17/Sep/2024:07:18:10] ENGINE Serving on https://172.21.15.144:7150 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: [17/Sep/2024:07:18:10] ENGINE Error in HTTPServer.serve 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: Traceback (most recent call last): 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: self._connections.run(self.expiration_interval) 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: self._run(expiration_interval) 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: s = self.context.wrap_socket( 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T07:18:38.186 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: return self.sslsocket_class._create( 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: self.do_handshake() 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: self._sslobj.do_handshake() 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: [17/Sep/2024:07:18:10] ENGINE Serving on http://172.21.15.144:8765 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: [17/Sep/2024:07:18:10] ENGINE Bus STARTED 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mgrmap e17: smithi144.lblkyt(active, since 2s) 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.187 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi175", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3387153299' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi144", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi144:/etc/ceph/ceph.conf 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi175:/etc/ceph/ceph.conf 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:38.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi144:/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi175:/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/2807732733' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon ceph-exporter.smithi175 on smithi175 2024-09-17T07:18:38.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1389644999' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon crash.smithi175 on smithi175 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/827719413' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon node-exporter.smithi175 on smithi175 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon mgr.smithi175.okpzhb on smithi175 2024-09-17T07:18:38.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/529410269' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: Deploying daemon mon.smithi175 on smithi175 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 ceph-mon[34607]: mon.smithi175@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-17T07:18:38.192 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 bash[34557]: 9a0f85788058e93c308c79137d39127925c667ecb754d9645a48fd17b980ee54 2024-09-17T07:18:38.193 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:37 smithi175 systemd[1]: Started Ceph mon.smithi175 for 95c1565a-74c4-11ef-bceb-c7b262605968. 2024-09-17T07:18:39.508 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T07:18:39.509 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T07:18:39.715 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi175/config 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: mon.smithi144 calling monitor election 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi175.okpzhb/crt"}]: dispatch 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: mon.smithi175 calling monitor election 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: mon.smithi144 is new leader, mons smithi144,smithi175 in quorum (ranks 0,1) 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: monmap e2: 2 mons at {smithi144=[v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0],smithi175=[v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: fsmap 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: mgrmap e17: smithi144.lblkyt(active, since 33s) 2024-09-17T07:18:43.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: overall HEALTH_OK 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: Standby manager daemon smithi175.okpzhb started 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi175.okpzhb/key"}]: dispatch 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.232 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: mon.smithi144 calling monitor election 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi175.okpzhb/crt"}]: dispatch 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:43.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: mon.smithi175 calling monitor election 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: mon.smithi144 is new leader, mons smithi144,smithi175 in quorum (ranks 0,1) 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: monmap e2: 2 mons at {smithi144=[v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0],smithi175=[v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: fsmap 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: mgrmap e17: smithi144.lblkyt(active, since 33s) 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: overall HEALTH_OK 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: Standby manager daemon smithi175.okpzhb started 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-09-17T07:18:43.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi175.okpzhb/key"}]: dispatch 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.? 172.21.15.175:0/3532344110' entity='mgr.smithi175.okpzhb' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:43.383 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:44.342 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:43 smithi175 ceph-mon[34607]: mgrmap e18: smithi144.lblkyt(active, since 33s), standbys: smithi175.okpzhb 2024-09-17T07:18:44.343 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi175.okpzhb", "id": "smithi175.okpzhb"}]: dispatch 2024-09-17T07:18:44.343 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:18:44.343 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:43 smithi175 ceph-mon[34607]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:44.343 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:43 smithi144 ceph-mon[25842]: mgrmap e18: smithi144.lblkyt(active, since 33s), standbys: smithi175.okpzhb 2024-09-17T07:18:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr metadata", "who": "smithi175.okpzhb", "id": "smithi175.okpzhb"}]: dispatch 2024-09-17T07:18:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:18:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:43 smithi144 ceph-mon[25842]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:44.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:18:44.517 INFO:teuthology.orchestra.run.smithi175.stdout: 2024-09-17T07:18:44.517 INFO:teuthology.orchestra.run.smithi175.stdout:{"epoch":2,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","modified":"2024-09-17T07:18:37.909846Z","created":"2024-09-17T07:16:06.358576Z","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":"smithi144","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:3300","nonce":0},{"type":"v1","addr":"172.21.15.144:6789","nonce":0}]},"addr":"172.21.15.144:6789/0","public_addr":"172.21.15.144:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi175","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:3300","nonce":0},{"type":"v1","addr":"172.21.15.175:6789","nonce":0}]},"addr":"172.21.15.175:6789/0","public_addr":"172.21.15.175:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T07:18:44.517 INFO:teuthology.orchestra.run.smithi175.stderr:dumped monmap epoch 2 2024-09-17T07:18:45.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3952473247' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:45.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:45.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:45 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3952473247' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:45.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:45 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:18:45.406 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T07:18:45.406 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T07:18:45.613 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: Updating smithi144:/etc/ceph/ceph.conf 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: Updating smithi175:/etc/ceph/ceph.conf 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:18:46.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T07:18:46.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:46 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: Updating smithi144:/etc/ceph/ceph.conf 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: Updating smithi175:/etc/ceph/ceph.conf 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: Updating smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: Updating smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T07:18:46.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:46 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:47.237 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:47 smithi144 ceph-mon[25842]: Reconfiguring mon.smithi144 (unknown last config time)... 2024-09-17T07:18:47.238 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:47 smithi144 ceph-mon[25842]: Reconfiguring daemon mon.smithi144 on smithi144 2024-09-17T07:18:47.381 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:47 smithi175 ceph-mon[34607]: Reconfiguring mon.smithi144 (unknown last config time)... 2024-09-17T07:18:47.382 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:47 smithi175 ceph-mon[34607]: Reconfiguring daemon mon.smithi144 on smithi144 2024-09-17T07:18:47.711 INFO:teuthology.orchestra.run.smithi144.stdout:# minimal ceph.conf for 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:18:47.711 INFO:teuthology.orchestra.run.smithi144.stdout:[global] 2024-09-17T07:18:47.712 INFO:teuthology.orchestra.run.smithi144.stdout: fsid = 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:18:47.712 INFO:teuthology.orchestra.run.smithi144.stdout: mon_host = [v2:172.21.15.144:3300/0,v1:172.21.15.144:6789/0] [v2:172.21.15.175:3300/0,v1:172.21.15.175:6789/0] 2024-09-17T07:18:48.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:48 smithi144 ceph-mon[25842]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:48.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:48 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3988695653' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:48.397 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:48 smithi175 ceph-mon[34607]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:48.397 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:48 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3988695653' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:48.430 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T07:18:48.430 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:18:48.430 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T07:18:48.458 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:18:48.458 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:48.523 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:18:48.523 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T07:18:48.551 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:18:48.551 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T07:18:48.616 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T07:18:48.617 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:18:48.617 DEBUG:teuthology.orchestra.run.smithi144:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:18:48.633 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T07:18:48.634 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/nvme4n1 2024-09-17T07:18:48.689 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/nvme4n1 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:17:20.047153620 +0000 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:12.729247474 +0000 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:12.729247474 +0000 2024-09-17T07:18:48.690 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:12.724247556 +0000 2024-09-17T07:18:48.690 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T07:18:48.754 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:18:48.754 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:18:48.754 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000212463 s, 2.4 MB/s 2024-09-17T07:18:48.755 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T07:18:48.811 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/nvme3n1 2024-09-17T07:18:48.867 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/nvme3n1 2024-09-17T07:18:48.867 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:48.867 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T07:18:48.867 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:48.867 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:48.868 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:17:20.036153800 +0000 2024-09-17T07:18:48.868 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:12.565250170 +0000 2024-09-17T07:18:48.868 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:12.565250170 +0000 2024-09-17T07:18:48.868 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:12.559250269 +0000 2024-09-17T07:18:48.868 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T07:18:48.931 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:18:48.932 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:18:48.932 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.00023561 s, 2.2 MB/s 2024-09-17T07:18:48.933 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T07:18:48.990 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/nvme2n1 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/nvme2n1 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 1015 Links: 1 Device type: 103,4 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:17:20.025153980 +0000 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:12.422252520 +0000 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:12.422252520 +0000 2024-09-17T07:18:49.046 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:12.417252602 +0000 2024-09-17T07:18:49.047 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T07:18:49.111 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:18:49.112 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:18:49.112 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000316843 s, 1.6 MB/s 2024-09-17T07:18:49.113 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T07:18:49.170 DEBUG:teuthology.orchestra.run.smithi144:> stat /dev/nvme1n1 2024-09-17T07:18:49.225 INFO:teuthology.orchestra.run.smithi144.stdout: File: /dev/nvme1n1 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Access: 2024-09-17 07:17:20.014154160 +0000 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Modify: 2024-09-17 07:15:12.291254673 +0000 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout:Change: 2024-09-17 07:15:12.291254673 +0000 2024-09-17T07:18:49.226 INFO:teuthology.orchestra.run.smithi144.stdout: Birth: 2024-09-17 07:15:12.286254755 +0000 2024-09-17T07:18:49.226 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T07:18:49.289 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records in 2024-09-17T07:18:49.289 INFO:teuthology.orchestra.run.smithi144.stderr:1+0 records out 2024-09-17T07:18:49.289 INFO:teuthology.orchestra.run.smithi144.stderr:512 bytes copied, 0.000222081 s, 2.3 MB/s 2024-09-17T07:18:49.290 DEBUG:teuthology.orchestra.run.smithi144:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T07:18:49.348 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:18:49.348 DEBUG:teuthology.orchestra.run.smithi175:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T07:18:49.364 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T07:18:49.364 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/nvme4n1 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/nvme4n1 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:18:12.867361749 +0000 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:14.368105976 +0000 2024-09-17T07:18:49.419 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:14.368105976 +0000 2024-09-17T07:18:49.420 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:14.364106038 +0000 2024-09-17T07:18:49.420 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T07:18:49.482 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:18:49.482 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:18:49.482 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.00022294 s, 2.3 MB/s 2024-09-17T07:18:49.483 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T07:18:49.540 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/nvme3n1 2024-09-17T07:18:49.596 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/nvme3n1 2024-09-17T07:18:49.596 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.596 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-17T07:18:49.596 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.597 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.597 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:18:12.856361915 +0000 2024-09-17T07:18:49.597 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:14.227108157 +0000 2024-09-17T07:18:49.597 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:14.227108157 +0000 2024-09-17T07:18:49.597 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:14.223108218 +0000 2024-09-17T07:18:49.598 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T07:18:49.659 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:18:49.659 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:18:49.660 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000259563 s, 2.0 MB/s 2024-09-17T07:18:49.660 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T07:18:49.717 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/nvme2n1 2024-09-17T07:18:49.773 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/nvme2n1 2024-09-17T07:18:49.773 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.773 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:18:12.846362065 +0000 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:14.080110430 +0000 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:14.080110430 +0000 2024-09-17T07:18:49.774 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:14.076110492 +0000 2024-09-17T07:18:49.774 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T07:18:49.837 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:18:49.837 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:18:49.838 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000223459 s, 2.3 MB/s 2024-09-17T07:18:49.839 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T07:18:49.895 DEBUG:teuthology.orchestra.run.smithi175:> stat /dev/nvme1n1 2024-09-17T07:18:49.951 INFO:teuthology.orchestra.run.smithi175.stdout: File: /dev/nvme1n1 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Access: 2024-09-17 07:18:12.835362231 +0000 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Modify: 2024-09-17 07:15:13.930112750 +0000 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout:Change: 2024-09-17 07:15:13.930112750 +0000 2024-09-17T07:18:49.952 INFO:teuthology.orchestra.run.smithi175.stdout: Birth: 2024-09-17 07:15:13.926112811 +0000 2024-09-17T07:18:49.952 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T07:18:50.015 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records in 2024-09-17T07:18:50.015 INFO:teuthology.orchestra.run.smithi175.stderr:1+0 records out 2024-09-17T07:18:50.016 INFO:teuthology.orchestra.run.smithi175.stderr:512 bytes copied, 0.000231197 s, 2.2 MB/s 2024-09-17T07:18:50.017 DEBUG:teuthology.orchestra.run.smithi175:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T07:18:50.073 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-17T07:18:50.134 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:50.134 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:50.134 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: Reconfiguring mgr.smithi144.lblkyt (unknown last config time)... 2024-09-17T07:18:50.134 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi144.lblkyt", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:18:50.134 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:18:50.135 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:50.135 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: Reconfiguring daemon mgr.smithi144.lblkyt on smithi144 2024-09-17T07:18:50.135 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:49 smithi175 ceph-mon[34607]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: Reconfiguring mgr.smithi144.lblkyt (unknown last config time)... 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi144.lblkyt", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: Reconfiguring daemon mgr.smithi144.lblkyt on smithi144 2024-09-17T07:18:50.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:49 smithi144 ceph-mon[25842]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:50.302 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi175/config 2024-09-17T07:18:51.363 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:51.364 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:51.364 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: Reconfiguring ceph-exporter.smithi144 (monmap changed)... 2024-09-17T07:18:51.364 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi144", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:18:51.364 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:51.364 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:51 smithi175 ceph-mon[34607]: Reconfiguring daemon ceph-exporter.smithi144 on smithi144 2024-09-17T07:18:51.517 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:51.517 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:51.517 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: Reconfiguring ceph-exporter.smithi144 (monmap changed)... 2024-09-17T07:18:51.517 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi144", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:18:51.517 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:51.518 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:51 smithi144 ceph-mon[25842]: Reconfiguring daemon ceph-exporter.smithi144 on smithi144 2024-09-17T07:18:52.014 INFO:teuthology.orchestra.run.smithi175.stdout:Scheduled osd.all-available-devices update... 2024-09-17T07:18:52.327 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:52.328 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:52.328 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:52.328 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi144", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:18:52.328 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:52.328 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:52.607 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-17T07:18:52.608 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:18:52.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:52.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:52.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:52.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi144", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:18:52.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:18:52.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:53.036 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: Reconfiguring crash.smithi144 (monmap changed)... 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: Reconfiguring daemon crash.smithi144 on smithi144 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: from='client.14246 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: Marking host: smithi144 for OSDSpec preview refresh. 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: Marking host: smithi175 for OSDSpec preview refresh. 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: Saving service osd.all-available-devices spec with placement * 2024-09-17T07:18:53.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:53.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:53.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: Reconfiguring crash.smithi144 (monmap changed)... 2024-09-17T07:18:53.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: Reconfiguring daemon crash.smithi144 on smithi144 2024-09-17T07:18:53.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: from='client.14246 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:18:53.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: Marking host: smithi144 for OSDSpec preview refresh. 2024-09-17T07:18:53.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: Marking host: smithi175 for OSDSpec preview refresh. 2024-09-17T07:18:53.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: Saving service osd.all-available-devices spec with placement * 2024-09-17T07:18:53.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:53.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:18:54.416 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:54 smithi144 ceph-mon[25842]: Reconfiguring alertmanager.smithi144 (dependencies changed)... 2024-09-17T07:18:54.416 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:54 smithi144 ceph-mon[25842]: Reconfiguring daemon alertmanager.smithi144 on smithi144 2024-09-17T07:18:54.416 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:54 smithi144 ceph-mon[25842]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:54.417 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:54.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:54 smithi175 ceph-mon[34607]: Reconfiguring alertmanager.smithi144 (dependencies changed)... 2024-09-17T07:18:54.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:54 smithi175 ceph-mon[34607]: Reconfiguring daemon alertmanager.smithi144 on smithi144 2024-09-17T07:18:54.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:54 smithi175 ceph-mon[34607]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:54.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:18:56.228 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:18:56.549 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:56 smithi144 ceph-mon[25842]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:56.549 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:56 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/519426420' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:18:56.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:56 smithi175 ceph-mon[34607]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:56.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:56 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/519426420' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:18:58.059 INFO:teuthology.orchestra.run.smithi144.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-17T07:18:58.349 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:18:58 smithi144 ceph-mon[25842]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:58.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:18:58 smithi175 ceph-mon[34607]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:18:59.061 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:18:59.288 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:00.430 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:00 smithi144 ceph-mon[25842]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:00.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:00 smithi175 ceph-mon[34607]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:01.080 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:01.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:01 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3665953006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:01.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:01 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3665953006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:02.214 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:02.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:02 smithi144 ceph-mon[25842]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:02.451 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:02.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:02.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:02 smithi175 ceph-mon[34607]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:02.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:02.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:03.215 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:03.339 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:03 smithi144 ceph-mon[25842]: Reconfiguring grafana.smithi144 (dependencies changed)... 2024-09-17T07:19:03.339 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:03 smithi144 ceph-mon[25842]: Reconfiguring daemon grafana.smithi144 on smithi144 2024-09-17T07:19:03.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:03 smithi175 ceph-mon[34607]: Reconfiguring grafana.smithi144 (dependencies changed)... 2024-09-17T07:19:03.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:03 smithi175 ceph-mon[34607]: Reconfiguring daemon grafana.smithi144 on smithi144 2024-09-17T07:19:03.993 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:04.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:04 smithi144 ceph-mon[25842]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:04.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:04 smithi175 ceph-mon[34607]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:06.265 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:06.567 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:06 smithi144 ceph-mon[25842]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:06.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:06 smithi175 ceph-mon[34607]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:07.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:07 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1171022567' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:07.575 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:07.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:07 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1171022567' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:08.576 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:08.598 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:08 smithi144 ceph-mon[25842]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:08.598 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:08.598 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:08.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:08 smithi175 ceph-mon[34607]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:08.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:08.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:09.609 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:09.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:09 smithi144 ceph-mon[25842]: Reconfiguring prometheus.smithi144 (dependencies changed)... 2024-09-17T07:19:09.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:09 smithi144 ceph-mon[25842]: Reconfiguring daemon prometheus.smithi144 on smithi144 2024-09-17T07:19:09.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:09.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:09 smithi175 ceph-mon[34607]: Reconfiguring prometheus.smithi144 (dependencies changed)... 2024-09-17T07:19:09.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:09 smithi175 ceph-mon[34607]: Reconfiguring daemon prometheus.smithi144 on smithi144 2024-09-17T07:19:09.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:10.559 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:10 smithi144 ceph-mon[25842]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:10.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:10 smithi175 ceph-mon[34607]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:12.554 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:12 smithi144 ceph-mon[25842]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:12.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:12 smithi175 ceph-mon[34607]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:13.220 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:13.603 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:13 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2334774432' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:13.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:13 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2334774432' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:14.219 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:14.464 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:14 smithi144 ceph-mon[25842]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:14.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:14 smithi175 ceph-mon[34607]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:15.221 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:15.421 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:16.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: Reconfiguring ceph-exporter.smithi175 (monmap changed)... 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:16.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:16 smithi144 ceph-mon[25842]: Reconfiguring daemon ceph-exporter.smithi175 on smithi175 2024-09-17T07:19:16.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: Reconfiguring ceph-exporter.smithi175 (monmap changed)... 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi175", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:16 smithi175 ceph-mon[34607]: Reconfiguring daemon ceph-exporter.smithi175 on smithi175 2024-09-17T07:19:17.168 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:17.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:17.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:17.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: Reconfiguring crash.smithi175 (monmap changed)... 2024-09-17T07:19:17.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:19:17.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:17.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: Reconfiguring daemon crash.smithi175 on smithi175 2024-09-17T07:19:17.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:17 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3344835614' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:17.496 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:17.496 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:17.497 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: Reconfiguring crash.smithi175 (monmap changed)... 2024-09-17T07:19:17.497 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi175", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-17T07:19:17.497 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:17.497 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: Reconfiguring daemon crash.smithi175 on smithi175 2024-09-17T07:19:17.497 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:17 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3344835614' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:17.776 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:19:18.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:18.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi175.okpzhb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-17T07:19:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-17T07:19:18.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:18.777 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:18.988 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: Reconfiguring mgr.smithi175.okpzhb (monmap changed)... 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: Reconfiguring daemon mgr.smithi175.okpzhb on smithi175 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T07:19:19.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: Reconfiguring mgr.smithi175.okpzhb (monmap changed)... 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: Reconfiguring daemon mgr.smithi175.okpzhb on smithi175 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-17T07:19:19.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: Reconfiguring mon.smithi175 (monmap changed)... 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: Reconfiguring daemon mon.smithi175 on smithi175 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi144.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi144.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T07:19:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:19:20.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi144.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T07:19:20.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: Reconfiguring mon.smithi175 (monmap changed)... 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: Reconfiguring daemon mon.smithi175 on smithi175 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi144.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T07:19:20.519 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi144.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T07:19:20.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:19:20.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi144.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T07:19:20.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:20.520 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:19:20.897 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:21.368 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T07:19:21.368 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi144.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T07:19:21.368 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T07:19:21.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi144.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T07:19:21.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:19:21.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi144.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T07:19:21.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:21 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1255291630' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:21.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T07:19:21.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi144.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T07:19:21.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T07:19:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi144.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T07:19:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:19:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi144.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T07:19:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:21 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1255291630' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:21.827 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:22.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:22 smithi175 ceph-mon[34607]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:22.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:22 smithi144 ceph-mon[25842]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:22.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:22.828 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:23.140 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:24 smithi175 ceph-mon[34607]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:24.484 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:24 smithi144 ceph-mon[25842]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:24.485 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:25.634 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:26.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:26 smithi144 ceph-mon[25842]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:26.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:26 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4283025771' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:26.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:26 smithi175 ceph-mon[34607]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:26.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:26 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/4283025771' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:27.353 INFO:teuthology.orchestra.run.smithi144.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-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:19:28.127 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.128 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:19:28.128 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.201 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:19:28.202 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:28.355 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:28.883 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1342008039' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]: dispatch 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]: dispatch 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]': finished 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T07:19:30.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:30 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1342008039' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]: dispatch 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]: dispatch 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46d74575-b593-4efd-a2b1-4c29c7d44713"}]': finished 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T07:19:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:30 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:31.223 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2068398792' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0b0b018-4e98-4b72-94ef-cea0cfd391da"}]: dispatch 2024-09-17T07:19:31.223 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2068398792' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0b0b018-4e98-4b72-94ef-cea0cfd391da"}]': finished 2024-09-17T07:19:31.223 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:31 smithi175 ceph-mon[34607]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T07:19:31.223 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:31 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:31.223 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:31 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:31.245 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:31.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2068398792' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0b0b018-4e98-4b72-94ef-cea0cfd391da"}]: dispatch 2024-09-17T07:19:31.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2068398792' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0b0b018-4e98-4b72-94ef-cea0cfd391da"}]': finished 2024-09-17T07:19:31.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:31 smithi144 ceph-mon[25842]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T07:19:31.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:31.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:31.976 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726557570,"num_remapped_pgs":0} 2024-09-17T07:19:32.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:32 smithi144 ceph-mon[25842]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:32.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:32 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1131161873' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:32.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:32 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4117005523' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:32.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:32 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1451142647' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:32 smithi175 ceph-mon[34607]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:32 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1131161873' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:32 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/4117005523' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:32 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1451142647' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:32.978 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:33.177 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:34.284 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3297033979' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]: dispatch 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]: dispatch 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]': finished 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:34.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3297033979' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]: dispatch 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]: dispatch 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59e11c07-fe3c-4998-9f06-ededbe71c99f"}]': finished 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:34.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:35.022 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:35.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/159480777' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7f79fa27-3ef3-4f08-b4bc-c02c72b0076b"}]: dispatch 2024-09-17T07:19:35.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/159480777' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7f79fa27-3ef3-4f08-b4bc-c02c72b0076b"}]': finished 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/4229604457' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:35.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:35 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3178067190' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:35.362 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/159480777' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7f79fa27-3ef3-4f08-b4bc-c02c72b0076b"}]: dispatch 2024-09-17T07:19:35.362 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/159480777' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7f79fa27-3ef3-4f08-b4bc-c02c72b0076b"}]': finished 2024-09-17T07:19:35.362 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T07:19:35.362 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:35.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:35.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:35.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:35.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/4229604457' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:35.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:35 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3178067190' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:35.761 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726557574,"num_remapped_pgs":0} 2024-09-17T07:19:36.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:36 smithi144 ceph-mon[25842]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:36.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:36 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1909688298' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:36.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:36 smithi175 ceph-mon[34607]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:36.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:36 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1909688298' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:36.762 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:36.971 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/2135943683' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]: dispatch 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]: dispatch 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]': finished 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:38.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:38.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/2135943683' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0018f835-1a2b-43d6-a863-8fe3f2d11cc0"}]': finished 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:38.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:38.703 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2156092726' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc0b013-646f-4266-b814-1a52011b0742"}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2156092726' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cfc0b013-646f-4266-b814-1a52011b0742"}]': finished 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:39.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3968878267' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:39.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3727435889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:39.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:39.470 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726557578,"num_remapped_pgs":0} 2024-09-17T07:19:39.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2156092726' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cfc0b013-646f-4266-b814-1a52011b0742"}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2156092726' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cfc0b013-646f-4266-b814-1a52011b0742"}]': finished 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3968878267' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3727435889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:39.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:40.471 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:40 smithi175 ceph-mon[34607]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:40 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2806383435' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:40.495 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:40 smithi144 ceph-mon[25842]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:40.495 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:40 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2806383435' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:40.669 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:41.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:41 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/2684176716' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]: dispatch 2024-09-17T07:19:41.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:41 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]: dispatch 2024-09-17T07:19:41.409 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:41 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/2684176716' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]: dispatch 2024-09-17T07:19:41.409 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:41 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]: dispatch 2024-09-17T07:19:42.251 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]': finished 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:42.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:42.340 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:42.340 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38612758-e1ec-4da0-8f5c-dc65330ba8b5"}]': finished 2024-09-17T07:19:42.340 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T07:19:42.340 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:42.340 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:42.341 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:42.341 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:42.341 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:42.341 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:42.341 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:42.409 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1823707012' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/4222911057' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c396cdc8-fa67-47cf-98a2-27f1c35ddfce"}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/4222911057' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c396cdc8-fa67-47cf-98a2-27f1c35ddfce"}]': finished 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:43.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:43.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:43.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:43.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:43 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3335912365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1823707012' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4222911057' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c396cdc8-fa67-47cf-98a2-27f1c35ddfce"}]: dispatch 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4222911057' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c396cdc8-fa67-47cf-98a2-27f1c35ddfce"}]': finished 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:43.537 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:43.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:43 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3335912365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:44.306 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:44.476 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:44 smithi175 ceph-mon[34607]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:44.476 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:44 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/411807732' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:44.504 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:44.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:44 smithi144 ceph-mon[25842]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:44.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:44 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/411807732' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-17T07:19:46.166 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:46.166 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:46 smithi144 ceph-mon[25842]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:46 smithi175 ceph-mon[34607]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:47.334 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:47 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2191852519' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:47.355 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:19:47.377 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:47 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2191852519' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:48.265 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:48 smithi144 ceph-mon[25842]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:48.265 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:48 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T07:19:48.265 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:48 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:48.357 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:48.366 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:48 smithi175 ceph-mon[34607]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:48.366 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:48 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-17T07:19:48.367 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:48 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:49.065 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:49.362 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:49 smithi175 ceph-mon[34607]: Deploying daemon osd.0 on smithi175 2024-09-17T07:19:49.606 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:49 smithi144 ceph-mon[25842]: Deploying daemon osd.0 on smithi175 2024-09-17T07:19:50.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:50 smithi175 ceph-mon[34607]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:50.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T07:19:50.191 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:50.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:50 smithi144 ceph-mon[25842]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:50.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-17T07:19:50.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:51.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:51 smithi175 ceph-mon[34607]: Deploying daemon osd.1 on smithi144 2024-09-17T07:19:51.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:51 smithi144 ceph-mon[25842]: Deploying daemon osd.1 on smithi144 2024-09-17T07:19:51.651 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:52.365 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:52 smithi175 ceph-mon[34607]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:52.366 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:52 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/846757145' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:52.429 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:52 smithi144 ceph-mon[25842]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:52.430 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:52 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/846757145' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:52.919 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:19:53.920 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:53.980 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:53.981 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:53.981 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T07:19:53.981 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:53.981 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: Deploying daemon osd.2 on smithi175 2024-09-17T07:19:53.981 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:53 smithi144 ceph-mon[25842]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:54.124 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:54.208 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:54.209 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:54.209 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-17T07:19:54.209 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:54.209 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: Deploying daemon osd.2 on smithi175 2024-09-17T07:19:54.209 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:53 smithi175 ceph-mon[34607]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:55.056 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:55.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:19:55.956 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:19:55.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:55 smithi175 ceph-mon[34607]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:56.270 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:55 smithi144 ceph-mon[25842]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:56.878 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:19:56.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:56 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1881554161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:56.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:56 smithi175 ceph-mon[34607]: from='osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T07:19:56.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:56 smithi175 ceph-mon[34607]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T07:19:57.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:56 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1881554161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:19:57.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:56 smithi144 ceph-mon[25842]: from='osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T07:19:57.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:56 smithi144 ceph-mon[25842]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-17T07:19:57.879 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:19:58.100 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:58.221 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:58.222 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:58.222 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:19:58.222 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:58.222 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:58.222 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:57 smithi144 ceph-mon[25842]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:58.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T07:19:58.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T07:19:58.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:58.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:58.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:58.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:57 smithi175 ceph-mon[34607]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:58.957 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: Deploying daemon osd.4 on smithi175 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:58.958 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T07:19:58.959 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:58.959 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:58 smithi175 ceph-mon[34607]: Deploying daemon osd.3 on smithi144 2024-09-17T07:19:59.245 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:19:59.245 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-17T07:19:59.246 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: Deploying daemon osd.4 on smithi175 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:19:59.247 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:58 smithi144 ceph-mon[25842]: Deploying daemon osd.3 on smithi144 2024-09-17T07:20:00.145 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:00.145 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366] boot 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:00.146 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:00.147 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:19:59 smithi144 ceph-mon[25842]: pgmap v59: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: osd.0 [v2:172.21.15.175:6800/3183946366,v1:172.21.15.175:6801/3183946366] boot 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-17T07:20:00.165 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:00.166 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:19:59 smithi175 ceph-mon[34607]: pgmap v59: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:01.124 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:01.125 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: overall HEALTH_OK 2024-09-17T07:20:01.125 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:00 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3643551839' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: overall HEALTH_OK 2024-09-17T07:20:01.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:00 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3643551839' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:01.333 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":17,"num_osds":8,"num_up_osds":1,"osd_up_since":1726557598,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:02.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:01 smithi144 ceph-mon[25842]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:02.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:01 smithi144 ceph-mon[25842]: from='osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T07:20:02.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:01 smithi144 ceph-mon[25842]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T07:20:02.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:01 smithi144 ceph-mon[25842]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T07:20:02.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:01 smithi175 ceph-mon[34607]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:02.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:01 smithi175 ceph-mon[34607]: from='osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T07:20:02.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:01 smithi175 ceph-mon[34607]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-17T07:20:02.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:01 smithi175 ceph-mon[34607]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-17T07:20:02.334 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:02.595 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:03.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T07:20:03.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T07:20:03.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:03.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:02 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:03.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:03.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:02 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:03.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: Deploying daemon osd.6 on smithi175 2024-09-17T07:20:03.981 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:03 smithi175 ceph-mon[34607]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:04.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: Deploying daemon osd.6 on smithi175 2024-09-17T07:20:04.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:03 smithi144 ceph-mon[25842]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T07:20:04.551 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607] boot 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675] boot 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: osdmap e20: 8 total, 3 up, 8 in 2024-09-17T07:20:05.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:05.132 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:04 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/535654682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:05.151 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":20,"num_osds":8,"num_up_osds":3,"osd_up_since":1726557603,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:05.188 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: osd.2 [v2:172.21.15.175:6808/739712607,v1:172.21.15.175:6809/739712607] boot 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: osd.1 [v2:172.21.15.144:6802/2064662675,v1:172.21.15.144:6803/2064662675] boot 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: osdmap e20: 8 total, 3 up, 8 in 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:05.189 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:05.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:05.190 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:04 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/535654682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:06.103 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: osdmap e21: 8 total, 3 up, 8 in 2024-09-17T07:20:06.103 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:06.103 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:06.103 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:06.104 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:06.104 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:06.104 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: pgmap v67: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T07:20:06.104 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:20:06.153 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:06.377 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: osdmap e21: 8 total, 3 up, 8 in 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: pgmap v67: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T07:20:06.378 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:20:06.471 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:07.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: osdmap e22: 8 total, 3 up, 8 in 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T07:20:07.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:06 smithi175 ceph-mon[34607]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T07:20:07.259 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:20:07.259 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: osdmap e22: 8 total, 3 up, 8 in 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T07:20:07.260 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:06 smithi144 ceph-mon[25842]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-17T07:20:08.119 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: pgmap v70: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T07:20:08.120 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T07:20:08.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:08.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: Deploying daemon osd.5 on smithi144 2024-09-17T07:20:08.121 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:07 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T07:20:08.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: pgmap v70: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-17T07:20:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:08.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: Deploying daemon osd.5 on smithi144 2024-09-17T07:20:08.231 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:07 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:08.756 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:09.079 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: mgrmap e19: smithi144.lblkyt(active, since 118s), standbys: smithi175.okpzhb 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/137513345' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486] boot 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: osdmap e25: 8 total, 4 up, 8 in 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:09.080 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:09.148 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: mgrmap e19: smithi144.lblkyt(active, since 118s), standbys: smithi175.okpzhb 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/137513345' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: osd.4 [v2:172.21.15.175:6816/2586372486,v1:172.21.15.175:6817/2586372486] boot 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: osdmap e25: 8 total, 4 up, 8 in 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:09.149 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:09.416 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":24,"num_osds":8,"num_up_osds":3,"osd_up_since":1726557603,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:10.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:10.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:10.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:10.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:10.277 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:10.278 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:10.281 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:10.281 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:10.281 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:10.282 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:10.282 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:10.282 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:10.417 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:10.534 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57675]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T07:20:10.534 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57675]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T07:20:10.534 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57675]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T07:20:10.534 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57675]: pam_unix(sudo:session): session closed for user root 2024-09-17T07:20:10.794 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57732]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T07:20:10.794 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57732]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T07:20:10.794 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57732]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T07:20:10.794 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:10 smithi144 sudo[57732]: pam_unix(sudo:session): session closed for user root 2024-09-17T07:20:10.876 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:10 smithi175 sudo[45924]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T07:20:10.876 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:10 smithi175 sudo[45924]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T07:20:10.876 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:10 smithi175 sudo[45924]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T07:20:10.876 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:10 smithi175 sudo[45924]: pam_unix(sudo:session): session closed for user root 2024-09-17T07:20:10.917 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:11.128 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 sudo[46121]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T07:20:11.128 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 sudo[46121]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T07:20:11.128 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 sudo[46121]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T07:20:11.128 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 sudo[46121]: pam_unix(sudo:session): session closed for user root 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: osdmap e26: 8 total, 4 up, 8 in 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T07:20:11.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:20:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T07:20:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:20:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:20:11.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:20:11.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: osdmap e26: 8 total, 4 up, 8 in 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:20:11.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:11.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi144"}]: dispatch 2024-09-17T07:20:11.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "mon metadata", "id": "smithi175"}]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: osdmap e27: 8 total, 4 up, 8 in 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:12.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:12.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T07:20:12.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:12 smithi144 ceph-mon[25842]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: osdmap e27: 8 total, 4 up, 8 in 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:12.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:12.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:12.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:12.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T07:20:12.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:12 smithi175 ceph-mon[34607]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-17T07:20:13.303 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: osdmap e28: 8 total, 4 up, 8 in 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:13.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:13.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:13.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: osdmap e28: 8 total, 4 up, 8 in 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]: dispatch 2024-09-17T07:20:13.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:14.186 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":29,"num_osds":8,"num_up_osds":5,"osd_up_since":1726557613,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":1} 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235] boot 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:14.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:14.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:14.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1121506930' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:14.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:14 smithi144 ceph-mon[25842]: from='osd.6 ' entity='osd.6' 2024-09-17T07:20:14.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi175", "root=default"]}]': finished 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: osd.3 [v2:172.21.15.144:6810/2243895235,v1:172.21.15.144:6811/2243895235] boot 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1121506930' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:14.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:14 smithi175 ceph-mon[34607]: from='osd.6 ' entity='osd.6' 2024-09-17T07:20:15.188 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:15.409 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:15.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878] boot 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: osdmap e30: 8 total, 6 up, 8 in 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: osdmap e31: 8 total, 6 up, 8 in 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:15.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: osd.6 [v2:172.21.15.175:6824/2201724878,v1:172.21.15.175:6825/2201724878] boot 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: osdmap e30: 8 total, 6 up, 8 in 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: osdmap e31: 8 total, 6 up, 8 in 2024-09-17T07:20:15.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:15.539 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:16.490 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: pgmap v81: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 9.0 KiB/s rd, 457 KiB/s wr, 29 op/s 2024-09-17T07:20:16.490 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:16.490 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:16.490 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T07:20:16.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:16.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: Deploying daemon osd.7 on smithi144 2024-09-17T07:20:16.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: osdmap e32: 8 total, 6 up, 8 in 2024-09-17T07:20:16.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:16.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:16.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: pgmap v81: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 9.0 KiB/s rd, 457 KiB/s wr, 29 op/s 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: Deploying daemon osd.7 on smithi144 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: osdmap e32: 8 total, 6 up, 8 in 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:16.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:17.989 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:18.321 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:18 smithi144 ceph-mon[25842]: pgmap v84: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 9.0 KiB/s rd, 457 KiB/s wr, 29 op/s 2024-09-17T07:20:18.321 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:18 smithi144 ceph-mon[25842]: osdmap e33: 8 total, 6 up, 8 in 2024-09-17T07:20:18.321 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:18.321 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:18 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:18.322 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:18 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2296919856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:18.409 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:18 smithi175 ceph-mon[34607]: pgmap v84: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 9.0 KiB/s rd, 457 KiB/s wr, 29 op/s 2024-09-17T07:20:18.410 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:18 smithi175 ceph-mon[34607]: osdmap e33: 8 total, 6 up, 8 in 2024-09-17T07:20:18.410 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:18.410 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:18 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:18.410 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:18 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2296919856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:18.607 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":33,"num_osds":8,"num_up_osds":6,"osd_up_since":1726557614,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:19.417 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:19 smithi144 ceph-mon[25842]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T07:20:19.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:19 smithi175 ceph-mon[34607]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-17T07:20:19.608 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:19.998 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 7.3 KiB/s rd, 371 KiB/s wr, 24 op/s 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:20 smithi144 ceph-mon[25842]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 7.3 KiB/s rd, 371 KiB/s wr, 24 op/s 2024-09-17T07:20:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T07:20:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T07:20:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:20.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:20 smithi175 ceph-mon[34607]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:21.459 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:21 smithi144 ceph-mon[25842]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' 2024-09-17T07:20:21.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:21.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T07:20:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:21.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:21 smithi175 ceph-mon[34607]: from='osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331]' entity='osd.5' 2024-09-17T07:20:21.863 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:22.418 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:22.418 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331] boot 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: osdmap e36: 8 total, 7 up, 8 in 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:22.419 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:22 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/4132614386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:22.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: osd.5 [v2:172.21.15.144:6818/716831331,v1:172.21.15.144:6819/716831331] boot 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: osdmap e36: 8 total, 7 up, 8 in 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:22 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/4132614386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:22.699 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":36,"num_osds":8,"num_up_osds":7,"osd_up_since":1726557621,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:23.701 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:23.906 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:24.280 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T07:20:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T07:20:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:26.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:26 smithi144 ceph-mon[25842]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T07:20:26.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:26 smithi175 ceph-mon[34607]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail; 98 KiB/s, 0 objects/s recovering 2024-09-17T07:20:26.947 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:27.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:27 smithi144 ceph-mon[25842]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T07:20:27.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:27 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3088341852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:27.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:27 smithi175 ceph-mon[34607]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-17T07:20:27.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:27 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3088341852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:28.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:28.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:28 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:28.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-09-17T07:20:28.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T07:20:28.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T07:20:28.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:28.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]: dispatch 2024-09-17T07:20:28.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:28.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:28 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:28.510 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1726557621,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:29.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:29 smithi175 ceph-mon[34607]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:29.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:29 smithi175 ceph-mon[34607]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T07:20:29.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:29.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:29.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:20:29.511 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T07:20:29.527 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:29 smithi144 ceph-mon[25842]: from='osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi144", "root=default"]}]': finished 2024-09-17T07:20:29.527 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:29 smithi144 ceph-mon[25842]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T07:20:29.527 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:29.527 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:29.527 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:20:30.218 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:30.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: purged_snaps scrub starts 2024-09-17T07:20:30.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: purged_snaps scrub ok 2024-09-17T07:20:30.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-09-17T07:20:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443] boot 2024-09-17T07:20:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: osdmap e40: 8 total, 8 up, 8 in 2024-09-17T07:20:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:30.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:30 smithi175 ceph-mon[34607]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: purged_snaps scrub starts 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: purged_snaps scrub ok 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: pgmap v97: 1 pgs: 1 unknown; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: osd.7 [v2:172.21.15.144:6826/2304631443,v1:172.21.15.144:6827/2304631443] boot 2024-09-17T07:20:30.486 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: osdmap e40: 8 total, 8 up, 8 in 2024-09-17T07:20:30.487 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-17T07:20:30.487 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:30 smithi144 ceph-mon[25842]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T07:20:31.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:31 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:31.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:31 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:31.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:31 smithi175 ceph-mon[34607]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T07:20:31.513 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:31.513 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:31 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:31.513 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:31 smithi144 ceph-mon[25842]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T07:20:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:32 smithi175 ceph-mon[34607]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:32.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:32 smithi175 ceph-mon[34607]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T07:20:32.567 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:32 smithi144 ceph-mon[25842]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:32.567 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:32 smithi144 ceph-mon[25842]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T07:20:32.826 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:33.547 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:33 smithi144 ceph-mon[25842]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T07:20:33.547 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:33 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3226327524' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:33.569 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":44,"num_osds":8,"num_up_osds":8,"osd_up_since":1726557629,"num_in_osds":8,"osd_in_since":1726557582,"num_remapped_pgs":0} 2024-09-17T07:20:33.570 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T07:20:33.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:33 smithi175 ceph-mon[34607]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T07:20:33.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:33 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3226327524' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-17T07:20:34.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:34.591 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:34.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:35.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:35 smithi144 ceph-mon[25842]: Detected new or changed devices on smithi175 2024-09-17T07:20:35.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:35 smithi144 ceph-mon[25842]: Adjusting osd_memory_target on smithi175 to 3728M 2024-09-17T07:20:35.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:35 smithi175 ceph-mon[34607]: Detected new or changed devices on smithi175 2024-09-17T07:20:35.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:35 smithi175 ceph-mon[34607]: Adjusting osd_memory_target on smithi175 to 3728M 2024-09-17T07:20:36.370 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:36 smithi144 ceph-mon[25842]: pgmap v105: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:36.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:36 smithi175 ceph-mon[34607]: pgmap v105: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:36.790 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:36.790 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":44,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","created":"2024-09-17T07:16:09.484075+0000","modified":"2024-09-17T07:20:32.245044+0000","last_up_change":"2024-09-17T07:20:29.194202+0000","last_in_change":"2024-09-17T07:19:42.392297+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T07:20:05.351769+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":"24","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":"46d74575-b593-4efd-a2b1-4c29c7d44713","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6800","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6801","nonce":3183946366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6802","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6803","nonce":3183946366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6806","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6807","nonce":3183946366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6804","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6805","nonce":3183946366}]},"public_addr":"172.21.15.175:6801/3183946366","cluster_addr":"172.21.15.175:6803/3183946366","heartbeat_back_addr":"172.21.15.175:6807/3183946366","heartbeat_front_addr":"172.21.15.175:6805/3183946366","state":["exists","up"]},{"osd":1,"uuid":"e0b0b018-4e98-4b72-94ef-cea0cfd391da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6802","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6803","nonce":2064662675}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6804","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6805","nonce":2064662675}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6808","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6809","nonce":2064662675}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6806","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6807","nonce":2064662675}]},"public_addr":"172.21.15.144:6803/2064662675","cluster_addr":"172.21.15.144:6805/2064662675","heartbeat_back_addr":"172.21.15.144:6809/2064662675","heartbeat_front_addr":"172.21.15.144:6807/2064662675","state":["exists","up"]},{"osd":2,"uuid":"59e11c07-fe3c-4998-9f06-ededbe71c99f","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.175:6808","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6809","nonce":739712607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6810","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6811","nonce":739712607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6814","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6815","nonce":739712607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6812","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6813","nonce":739712607}]},"public_addr":"172.21.15.175:6809/739712607","cluster_addr":"172.21.15.175:6811/739712607","heartbeat_back_addr":"172.21.15.175:6815/739712607","heartbeat_front_addr":"172.21.15.175:6813/739712607","state":["exists","up"]},{"osd":3,"uuid":"7f79fa27-3ef3-4f08-b4bc-c02c72b0076b","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.144:6810","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6811","nonce":2243895235}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6812","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6813","nonce":2243895235}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6816","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6817","nonce":2243895235}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6814","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6815","nonce":2243895235}]},"public_addr":"172.21.15.144:6811/2243895235","cluster_addr":"172.21.15.144:6813/2243895235","heartbeat_back_addr":"172.21.15.144:6817/2243895235","heartbeat_front_addr":"172.21.15.144:6815/2243895235","state":["exists","up"]},{"osd":4,"uuid":"0018f835-1a2b-43d6-a863-8fe3f2d11cc0","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.175:6816","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6817","nonce":2586372486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6818","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6819","nonce":2586372486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6822","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6823","nonce":2586372486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6820","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6821","nonce":2586372486}]},"public_addr":"172.21.15.175:6817/2586372486","cluster_addr":"172.21.15.175:6819/2586372486","heartbeat_back_addr":"172.21.15.175:6823/2586372486","heartbeat_front_addr":"172.21.15.175:6821/2586372486","state":["exists","up"]},{"osd":5,"uuid":"cfc0b013-646f-4266-b814-1a52011b0742","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6818","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6819","nonce":716831331}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6820","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6821","nonce":716831331}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6824","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6825","nonce":716831331}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6822","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6823","nonce":716831331}]},"public_addr":"172.21.15.144:6819/716831331","cluster_addr":"172.21.15.144:6821/716831331","heartbeat_back_addr":"172.21.15.144:6825/716831331","heartbeat_front_addr":"172.21.15.144:6823/716831331","state":["exists","up"]},{"osd":6,"uuid":"38612758-e1ec-4da0-8f5c-dc65330ba8b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6824","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6825","nonce":2201724878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6826","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6827","nonce":2201724878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6830","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6831","nonce":2201724878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6828","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6829","nonce":2201724878}]},"public_addr":"172.21.15.175:6825/2201724878","cluster_addr":"172.21.15.175:6827/2201724878","heartbeat_back_addr":"172.21.15.175:6831/2201724878","heartbeat_front_addr":"172.21.15.175:6829/2201724878","state":["exists","up"]},{"osd":7,"uuid":"c396cdc8-fa67-47cf-98a2-27f1c35ddfce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6826","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6827","nonce":2304631443}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6828","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6829","nonce":2304631443}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6832","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6833","nonce":2304631443}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6830","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6831","nonce":2304631443}]},"public_addr":"172.21.15.144:6827/2304631443","cluster_addr":"172.21.15.144:6829/2304631443","heartbeat_back_addr":"172.21.15.144:6833/2304631443","heartbeat_front_addr":"172.21.15.144:6831/2304631443","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-17T07:19:57.053282+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-17T07:20:02.219945+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-17T07:20:02.168658+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-17T07:20:11.295129+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-17T07:20:07.088981+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-17T07:20:19.468262+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-17T07:20:12.237194+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-17T07:20:27.962947+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.144:0/1404388227":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/1843231748":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3242287804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/2130159176":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/3476634667":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6800/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3673544152":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3876974851":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/744612694":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/317051437":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6801/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3042320180":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6800/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:6800/2130159176":"2024-09-18T07:18:09.049062+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-17T07:20:37.497 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T07:20:05.351769+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': '24', '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-17T07:20:37.498 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T07:20:37.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:37.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:37.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2285883212' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:20:37.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:37 smithi175 ceph-mon[34607]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-17T07:20:37.742 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:37 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:37.742 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:37 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:37.742 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:37 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2285883212' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:20:37.742 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:37 smithi144 ceph-mon[25842]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-17T07:20:38.248 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:39.204 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:39.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:40.469 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:40 smithi144 ceph-mon[25842]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T07:20:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:40 smithi175 ceph-mon[34607]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T07:20:41.598 INFO:teuthology.orchestra.run.smithi144.stdout:pg_num: 1 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: Detected new or changed devices on smithi144 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: Adjusting osd_memory_target on smithi144 to 2960M 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.382 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:42 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/479500818' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: Detected new or changed devices on smithi144 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: Adjusting osd_memory_target on smithi144 to 2960M 2024-09-17T07:20:42.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:20:42.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:42 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/479500818' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-17T07:20:43.494 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T07:20:43.494 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T07:20:43.776 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:44.330 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:44 smithi175 ceph-mon[34607]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-17T07:20:44.439 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:44 smithi144 ceph-mon[25842]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-09-17T07:20:46.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:46 smithi175 ceph-mon[34607]: pgmap v110: 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-17T07:20:46.250 INFO:teuthology.orchestra.run.smithi144.stdout:[client.0] 2024-09-17T07:20:46.250 INFO:teuthology.orchestra.run.smithi144.stdout: key = AQDOLelm816xDhAAN5ywRReDoW8xqZFmupYYGw== 2024-09-17T07:20:46.250 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:46 smithi144 ceph-mon[25842]: pgmap v110: 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-17T07:20:47.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:47 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2944378329' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T07:20:47.285 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:47 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2944378329' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T07:20:47.307 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:20:47.307 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-17T07:20:47.307 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-17T07:20:47.346 DEBUG:teuthology.orchestra.run.smithi175:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T07:20:47.369 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:47 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2944378329' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T07:20:47.369 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:47 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2944378329' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T07:20:48.029 INFO:teuthology.orchestra.run.smithi175.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi175/config 2024-09-17T07:20:48.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:48 smithi175 ceph-mon[34607]: pgmap v111: 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-17T07:20:48.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:48 smithi144 ceph-mon[25842]: pgmap v111: 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-17T07:20:50.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:50 smithi175 ceph-mon[34607]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:50.538 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:50 smithi144 ceph-mon[25842]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:51.344 INFO:teuthology.orchestra.run.smithi175.stdout:[client.1] 2024-09-17T07:20:51.344 INFO:teuthology.orchestra.run.smithi175.stdout: key = AQDTLelm1AtZFBAAe20pIfe+5kruWQG+31TMpw== 2024-09-17T07:20:51.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:51.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:51.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:51.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/3776344734' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T07:20:51.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: 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-17T07:20:51.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: 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-17T07:20:51.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:51.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:52.004 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:20:52.004 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-17T07:20:52.005 DEBUG:teuthology.orchestra.run.smithi175:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-17T07:20:52.082 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T07:20:52.082 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T07:20:52.082 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T07:20:52.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/3776344734' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: 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-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: 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-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:52.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:20:52.281 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:54.072 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:54.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:54 smithi144 ceph-mon[25842]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:54 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1316775974' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T07:20:54.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:54 smithi175 ceph-mon[34607]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:54 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1316775974' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-17T07:20:54.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:20:54.725 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":19,"flags":0,"active_gid":14209,"active_name":"smithi144.lblkyt","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6800","nonce":2396932418},{"type":"v1","addr":"172.21.15.144:6801","nonce":2396932418}]},"active_addr":"172.21.15.144:6801/2396932418","active_change":"2024-09-17T07:18:09.049175+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":14232,"name":"smithi175.okpzhb","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.144:8443/","prometheus":"http://172.21.15.144: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.144:0","nonce":1024750186}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.144:0","nonce":1853865799}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.144:0","nonce":2958804667}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.144:0","nonce":4255293110}]}]} 2024-09-17T07:20:54.730 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T07:20:54.731 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T07:20:54.731 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T07:20:54.926 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:56.362 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:56 smithi144 ceph-mon[25842]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:56.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:56 smithi175 ceph-mon[34607]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:56.764 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:56.764 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":44,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","created":"2024-09-17T07:16:09.484075+0000","modified":"2024-09-17T07:20:32.245044+0000","last_up_change":"2024-09-17T07:20:29.194202+0000","last_in_change":"2024-09-17T07:19:42.392297+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T07:20:05.351769+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":"24","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":"46d74575-b593-4efd-a2b1-4c29c7d44713","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6800","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6801","nonce":3183946366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6802","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6803","nonce":3183946366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6806","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6807","nonce":3183946366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6804","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6805","nonce":3183946366}]},"public_addr":"172.21.15.175:6801/3183946366","cluster_addr":"172.21.15.175:6803/3183946366","heartbeat_back_addr":"172.21.15.175:6807/3183946366","heartbeat_front_addr":"172.21.15.175:6805/3183946366","state":["exists","up"]},{"osd":1,"uuid":"e0b0b018-4e98-4b72-94ef-cea0cfd391da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6802","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6803","nonce":2064662675}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6804","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6805","nonce":2064662675}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6808","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6809","nonce":2064662675}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6806","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6807","nonce":2064662675}]},"public_addr":"172.21.15.144:6803/2064662675","cluster_addr":"172.21.15.144:6805/2064662675","heartbeat_back_addr":"172.21.15.144:6809/2064662675","heartbeat_front_addr":"172.21.15.144:6807/2064662675","state":["exists","up"]},{"osd":2,"uuid":"59e11c07-fe3c-4998-9f06-ededbe71c99f","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.175:6808","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6809","nonce":739712607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6810","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6811","nonce":739712607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6814","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6815","nonce":739712607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6812","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6813","nonce":739712607}]},"public_addr":"172.21.15.175:6809/739712607","cluster_addr":"172.21.15.175:6811/739712607","heartbeat_back_addr":"172.21.15.175:6815/739712607","heartbeat_front_addr":"172.21.15.175:6813/739712607","state":["exists","up"]},{"osd":3,"uuid":"7f79fa27-3ef3-4f08-b4bc-c02c72b0076b","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.144:6810","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6811","nonce":2243895235}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6812","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6813","nonce":2243895235}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6816","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6817","nonce":2243895235}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6814","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6815","nonce":2243895235}]},"public_addr":"172.21.15.144:6811/2243895235","cluster_addr":"172.21.15.144:6813/2243895235","heartbeat_back_addr":"172.21.15.144:6817/2243895235","heartbeat_front_addr":"172.21.15.144:6815/2243895235","state":["exists","up"]},{"osd":4,"uuid":"0018f835-1a2b-43d6-a863-8fe3f2d11cc0","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.175:6816","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6817","nonce":2586372486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6818","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6819","nonce":2586372486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6822","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6823","nonce":2586372486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6820","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6821","nonce":2586372486}]},"public_addr":"172.21.15.175:6817/2586372486","cluster_addr":"172.21.15.175:6819/2586372486","heartbeat_back_addr":"172.21.15.175:6823/2586372486","heartbeat_front_addr":"172.21.15.175:6821/2586372486","state":["exists","up"]},{"osd":5,"uuid":"cfc0b013-646f-4266-b814-1a52011b0742","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6818","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6819","nonce":716831331}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6820","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6821","nonce":716831331}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6824","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6825","nonce":716831331}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6822","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6823","nonce":716831331}]},"public_addr":"172.21.15.144:6819/716831331","cluster_addr":"172.21.15.144:6821/716831331","heartbeat_back_addr":"172.21.15.144:6825/716831331","heartbeat_front_addr":"172.21.15.144:6823/716831331","state":["exists","up"]},{"osd":6,"uuid":"38612758-e1ec-4da0-8f5c-dc65330ba8b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6824","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6825","nonce":2201724878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6826","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6827","nonce":2201724878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6830","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6831","nonce":2201724878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6828","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6829","nonce":2201724878}]},"public_addr":"172.21.15.175:6825/2201724878","cluster_addr":"172.21.15.175:6827/2201724878","heartbeat_back_addr":"172.21.15.175:6831/2201724878","heartbeat_front_addr":"172.21.15.175:6829/2201724878","state":["exists","up"]},{"osd":7,"uuid":"c396cdc8-fa67-47cf-98a2-27f1c35ddfce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6826","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6827","nonce":2304631443}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6828","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6829","nonce":2304631443}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6832","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6833","nonce":2304631443}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6830","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6831","nonce":2304631443}]},"public_addr":"172.21.15.144:6827/2304631443","cluster_addr":"172.21.15.144:6829/2304631443","heartbeat_back_addr":"172.21.15.144:6833/2304631443","heartbeat_front_addr":"172.21.15.144:6831/2304631443","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-17T07:19:57.053282+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-17T07:20:02.219945+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-17T07:20:02.168658+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-17T07:20:11.295129+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-17T07:20:07.088981+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-17T07:20:19.468262+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-17T07:20:12.237194+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-17T07:20:27.962947+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.144:0/1404388227":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/1843231748":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3242287804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/2130159176":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/3476634667":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6800/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3673544152":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3876974851":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/744612694":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/317051437":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6801/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3042320180":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6800/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:6800/2130159176":"2024-09-18T07:18:09.049062+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-17T07:20:57.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:57 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1167278665' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:20:57.457 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T07:20:57.458 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T07:20:57.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:57 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1167278665' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:20:57.658 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:20:58.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:20:58 smithi144 ceph-mon[25842]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:58.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:20:58 smithi175 ceph-mon[34607]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:20:59.406 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:20:59.406 INFO:teuthology.orchestra.run.smithi144.stdout:{"epoch":44,"fsid":"95c1565a-74c4-11ef-bceb-c7b262605968","created":"2024-09-17T07:16:09.484075+0000","modified":"2024-09-17T07:20:32.245044+0000","last_up_change":"2024-09-17T07:20:29.194202+0000","last_in_change":"2024-09-17T07:19:42.392297+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T07:20:05.351769+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":"24","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":"46d74575-b593-4efd-a2b1-4c29c7d44713","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6800","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6801","nonce":3183946366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6802","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6803","nonce":3183946366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6806","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6807","nonce":3183946366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6804","nonce":3183946366},{"type":"v1","addr":"172.21.15.175:6805","nonce":3183946366}]},"public_addr":"172.21.15.175:6801/3183946366","cluster_addr":"172.21.15.175:6803/3183946366","heartbeat_back_addr":"172.21.15.175:6807/3183946366","heartbeat_front_addr":"172.21.15.175:6805/3183946366","state":["exists","up"]},{"osd":1,"uuid":"e0b0b018-4e98-4b72-94ef-cea0cfd391da","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6802","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6803","nonce":2064662675}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6804","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6805","nonce":2064662675}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6808","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6809","nonce":2064662675}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6806","nonce":2064662675},{"type":"v1","addr":"172.21.15.144:6807","nonce":2064662675}]},"public_addr":"172.21.15.144:6803/2064662675","cluster_addr":"172.21.15.144:6805/2064662675","heartbeat_back_addr":"172.21.15.144:6809/2064662675","heartbeat_front_addr":"172.21.15.144:6807/2064662675","state":["exists","up"]},{"osd":2,"uuid":"59e11c07-fe3c-4998-9f06-ededbe71c99f","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.175:6808","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6809","nonce":739712607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6810","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6811","nonce":739712607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6814","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6815","nonce":739712607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6812","nonce":739712607},{"type":"v1","addr":"172.21.15.175:6813","nonce":739712607}]},"public_addr":"172.21.15.175:6809/739712607","cluster_addr":"172.21.15.175:6811/739712607","heartbeat_back_addr":"172.21.15.175:6815/739712607","heartbeat_front_addr":"172.21.15.175:6813/739712607","state":["exists","up"]},{"osd":3,"uuid":"7f79fa27-3ef3-4f08-b4bc-c02c72b0076b","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.144:6810","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6811","nonce":2243895235}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6812","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6813","nonce":2243895235}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6816","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6817","nonce":2243895235}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6814","nonce":2243895235},{"type":"v1","addr":"172.21.15.144:6815","nonce":2243895235}]},"public_addr":"172.21.15.144:6811/2243895235","cluster_addr":"172.21.15.144:6813/2243895235","heartbeat_back_addr":"172.21.15.144:6817/2243895235","heartbeat_front_addr":"172.21.15.144:6815/2243895235","state":["exists","up"]},{"osd":4,"uuid":"0018f835-1a2b-43d6-a863-8fe3f2d11cc0","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.175:6816","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6817","nonce":2586372486}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6818","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6819","nonce":2586372486}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6822","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6823","nonce":2586372486}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6820","nonce":2586372486},{"type":"v1","addr":"172.21.15.175:6821","nonce":2586372486}]},"public_addr":"172.21.15.175:6817/2586372486","cluster_addr":"172.21.15.175:6819/2586372486","heartbeat_back_addr":"172.21.15.175:6823/2586372486","heartbeat_front_addr":"172.21.15.175:6821/2586372486","state":["exists","up"]},{"osd":5,"uuid":"cfc0b013-646f-4266-b814-1a52011b0742","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6818","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6819","nonce":716831331}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6820","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6821","nonce":716831331}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6824","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6825","nonce":716831331}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6822","nonce":716831331},{"type":"v1","addr":"172.21.15.144:6823","nonce":716831331}]},"public_addr":"172.21.15.144:6819/716831331","cluster_addr":"172.21.15.144:6821/716831331","heartbeat_back_addr":"172.21.15.144:6825/716831331","heartbeat_front_addr":"172.21.15.144:6823/716831331","state":["exists","up"]},{"osd":6,"uuid":"38612758-e1ec-4da0-8f5c-dc65330ba8b5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6824","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6825","nonce":2201724878}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6826","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6827","nonce":2201724878}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6830","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6831","nonce":2201724878}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.175:6828","nonce":2201724878},{"type":"v1","addr":"172.21.15.175:6829","nonce":2201724878}]},"public_addr":"172.21.15.175:6825/2201724878","cluster_addr":"172.21.15.175:6827/2201724878","heartbeat_back_addr":"172.21.15.175:6831/2201724878","heartbeat_front_addr":"172.21.15.175:6829/2201724878","state":["exists","up"]},{"osd":7,"uuid":"c396cdc8-fa67-47cf-98a2-27f1c35ddfce","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6826","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6827","nonce":2304631443}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6828","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6829","nonce":2304631443}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6832","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6833","nonce":2304631443}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.144:6830","nonce":2304631443},{"type":"v1","addr":"172.21.15.144:6831","nonce":2304631443}]},"public_addr":"172.21.15.144:6827/2304631443","cluster_addr":"172.21.15.144:6829/2304631443","heartbeat_back_addr":"172.21.15.144:6833/2304631443","heartbeat_front_addr":"172.21.15.144:6831/2304631443","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-17T07:19:57.053282+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-17T07:20:02.219945+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-17T07:20:02.168658+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-17T07:20:11.295129+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-17T07:20:07.088981+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-17T07:20:19.468262+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-17T07:20:12.237194+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-17T07:20:27.962947+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.144:0/1404388227":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/1843231748":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3242287804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/2130159176":"2024-09-18T07:18:09.049062+0000","172.21.15.144:0/3476634667":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6800/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3673544152":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/3876974851":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/744612694":"2024-09-18T07:17:08.002253+0000","172.21.15.144:0/317051437":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6801/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:0/3042320180":"2024-09-18T07:18:09.049062+0000","172.21.15.144:6800/3956825804":"2024-09-18T07:16:36.883856+0000","172.21.15.144:6801/3564711906":"2024-09-18T07:17:08.002253+0000","172.21.15.144:6800/2130159176":"2024-09-18T07:18:09.049062+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-17T07:21:00.096 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T07:21:00.096 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T07:21:00.097 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T07:21:00.097 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T07:21:00.098 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T07:21:00.098 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T07:21:00.098 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-17T07:21:00.099 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-17T07:21:00.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:00 smithi144 ceph-mon[25842]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:00.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:00 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2301223583' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:21:00.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:00 smithi175 ceph-mon[34607]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:00.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:00 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2301223583' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-17T07:21:00.564 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.593 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.593 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.593 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.606 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.622 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.623 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:00.832 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:02.469 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:02 smithi144 ceph-mon[25842]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:02.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:02 smithi175 ceph-mon[34607]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:04.369 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:04 smithi144 ceph-mon[25842]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:04.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:04 smithi175 ceph-mon[34607]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:06.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:06 smithi175 ceph-mon[34607]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:06.557 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:06 smithi144 ceph-mon[25842]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:08.252 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:08 smithi144 ceph-mon[25842]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:08.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:08 smithi175 ceph-mon[34607]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:08.547 INFO:teuthology.orchestra.run.smithi144.stdout:128849018893 2024-09-17T07:21:08.547 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-17T07:21:09.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:09.549 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:10.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:10 smithi175 ceph-mon[34607]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:10.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:10 smithi144 ceph-mon[25842]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:11.028 INFO:teuthology.orchestra.run.smithi144.stdout:85899345936 2024-09-17T07:21:11.029 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T07:21:12.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:12 smithi144 ceph-mon[25842]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:12.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:12 smithi175 ceph-mon[34607]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:13.462 INFO:teuthology.orchestra.run.smithi144.stdout:154618822670 2024-09-17T07:21:13.462 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T07:21:14.208 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:14 smithi144 ceph-mon[25842]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:14.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:14 smithi175 ceph-mon[34607]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:14.931 INFO:teuthology.orchestra.run.smithi144.stdout:107374182416 2024-09-17T07:21:14.931 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T07:21:15.318 INFO:teuthology.orchestra.run.smithi144.stdout:171798691850 2024-09-17T07:21:15.318 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-17T07:21:16.171 INFO:teuthology.orchestra.run.smithi144.stdout:124554051599 2024-09-17T07:21:16.171 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T07:21:16.402 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:16 smithi144 ceph-mon[25842]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:16.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:16 smithi175 ceph-mon[34607]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:18.050 INFO:teuthology.orchestra.run.smithi144.stdout:85899345937 2024-09-17T07:21:18.050 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T07:21:18.279 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:18.280 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:18.280 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:18.289 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:18 smithi144 ceph-mon[25842]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:18 smithi175 ceph-mon[34607]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:18.499 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:18.897 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:18.916 INFO:teuthology.orchestra.run.smithi144.stdout:68719476753 2024-09-17T07:21:18.916 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T07:21:20.346 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:20 smithi144 ceph-mon[25842]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:20 smithi175 ceph-mon[34607]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:22.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:22 smithi175 ceph-mon[34607]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:22.564 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:22 smithi144 ceph-mon[25842]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:23.107 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:23.107 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:23.269 INFO:teuthology.orchestra.run.smithi144.stdout:171798691852 2024-09-17T07:21:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:24 smithi175 ceph-mon[34607]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:24 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2161244782' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T07:21:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:24.555 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:24 smithi144 ceph-mon[25842]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:24.555 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:24 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2161244782' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-17T07:21:24.555 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:24.965 INFO:tasks.cephadm.ceph_manager.ceph:need seq 171798691850 got 171798691852 for osd.7 2024-09-17T07:21:24.965 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:26.102 INFO:teuthology.orchestra.run.smithi144.stdout:107374182418 2024-09-17T07:21:26.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:26 smithi144 ceph-mon[25842]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:26.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:26 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2544693511' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T07:21:26.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:26 smithi175 ceph-mon[34607]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:26.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:26 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2544693511' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-17T07:21:26.841 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:27.654 INFO:teuthology.orchestra.run.smithi144.stdout:85899345940 2024-09-17T07:21:28.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:28 smithi175 ceph-mon[34607]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:28.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:28 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2770953592' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T07:21:28.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:28 smithi144 ceph-mon[25842]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:28.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:28 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2770953592' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-17T07:21:30.253 INFO:teuthology.orchestra.run.smithi144.stdout:68719476756 2024-09-17T07:21:30.444 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:30 smithi144 ceph-mon[25842]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:30.594 INFO:teuthology.orchestra.run.smithi144.stdout:154618822673 2024-09-17T07:21:30.595 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:30 smithi175 ceph-mon[34607]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:31.114 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476753 got 68719476756 for osd.0 2024-09-17T07:21:31.115 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:31.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1365838388' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T07:21:31.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2827018473' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T07:21:31.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1365838388' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-17T07:21:31.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2827018473' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-17T07:21:31.711 INFO:teuthology.orchestra.run.smithi144.stdout:128849018898 2024-09-17T07:21:32.355 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018893 got 128849018898 for osd.6 2024-09-17T07:21:32.355 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:32.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:32 smithi175 ceph-mon[34607]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:32.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:32 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/553581689' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T07:21:32.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:32 smithi144 ceph-mon[25842]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:32.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:32 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/553581689' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-17T07:21:32.709 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182416 got 107374182418 for osd.4 2024-09-17T07:21:32.710 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:33.122 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822670 got 154618822673 for osd.5 2024-09-17T07:21:33.122 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:33.986 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345936 got 85899345940 for osd.1 2024-09-17T07:21:33.987 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:34.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:34 smithi144 ceph-mon[25842]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:34.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:34 smithi175 ceph-mon[34607]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:35.256 INFO:teuthology.orchestra.run.smithi144.stdout:124554051603 2024-09-17T07:21:35.423 INFO:teuthology.orchestra.run.smithi144.stdout:85899345941 2024-09-17T07:21:35.907 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051599 got 124554051603 for osd.3 2024-09-17T07:21:35.920 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:36.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:36 smithi175 ceph-mon[34607]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:36.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:36 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/3450205734' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T07:21:36.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:36 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/41272186' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T07:21:36.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:36 smithi144 ceph-mon[25842]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:36.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:36 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/3450205734' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-17T07:21:36.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:36 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/41272186' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-17T07:21:36.730 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345937 got 85899345941 for osd.2 2024-09-17T07:21:36.730 DEBUG:teuthology.parallel:result is None 2024-09-17T07:21:36.730 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T07:21:36.731 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T07:21:36.934 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:38.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:38 smithi175 ceph-mon[34607]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:38.500 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:38 smithi144 ceph-mon[25842]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:38.912 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:21:38.913 INFO:teuthology.orchestra.run.smithi144.stderr:dumped all 2024-09-17T07:21:39.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:39.562 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:39.585 INFO:teuthology.orchestra.run.smithi144.stdout:{"pg_ready":true,"pg_map":{"version":136,"stamp":"2024-09-17T07:21:37.084438+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":221460,"kb_used_data":5256,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706988,"statfs":{"total":767926730752,"available":767699955712,"internally_reserved":0,"allocated":5382144,"data_stored":3220775,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12753,"internal_metadata":221236783},"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.001879"},"pg_stats":[{"pgid":"1.0","version":"27'197","reported_seq":281,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-17T07:20:32.257611+0000","last_change":"2024-09-17T07:20:32.257334+0000","last_active":"2024-09-17T07:20:32.257611+0000","last_peered":"2024-09-17T07:20:32.257611+0000","last_clean":"2024-09-17T07:20:32.257611+0000","last_became_active":"2024-09-17T07:20:32.256953+0000","last_became_peered":"2024-09-17T07:20:32.256953+0000","last_unstale":"2024-09-17T07:20:32.257611+0000","last_undegraded":"2024-09-17T07:20:32.257611+0000","last_fullsized":"2024-09-17T07:20:32.257611+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T07:20:05.953245+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T07:20:05.953245+0000","last_clean_scrub_stamp":"2024-09-17T07:20:05.953245+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-18T12:52:23.233929+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":40,"seq":171798691855,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1016,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1040384,"data_stored":771331,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.48799999999999999},{"interface":"front","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"last":0.41999999999999998}]},{"osd":1,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"last":0.29599999999999999},{"interface":"front","average":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"last":0.252}]},{"osd":2,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"last":0.52200000000000002},{"interface":"front","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.40699999999999997}]},{"osd":3,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27400000000000002,"5min":0.27400000000000002,"15min":0.27400000000000002},"max":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"last":0.39300000000000002},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.42799999999999999}]},{"osd":4,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.54700000000000004},{"interface":"front","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.53700000000000003}]},{"osd":5,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.29199999999999998,"5min":0.29199999999999998,"15min":0.29199999999999998},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.44800000000000001},{"interface":"front","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.34000000000000002}]},{"osd":6,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"last":0.504},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.46999999999999997}]}]},{"osd":5,"up_from":36,"seq":154618822674,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27460,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713596,"statfs":{"total":95990841344,"available":95962722304,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.60199999999999998},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.57099999999999995}]},{"osd":1,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"last":0.34399999999999997},{"interface":"front","average":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"min":{"1min":0.23899999999999999,"5min":0.23899999999999999,"15min":0.23899999999999999},"max":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"last":0.29699999999999999}]},{"osd":2,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.76500000000000001,"5min":0.76500000000000001,"15min":0.76500000000000001},"last":0.63100000000000001},{"interface":"front","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.53400000000000003}]},{"osd":3,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.45300000000000001,"5min":0.45300000000000001,"15min":0.45300000000000001},"last":0.40500000000000003},{"interface":"front","average":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"last":0.39100000000000001}]},{"osd":4,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.52600000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.79500000000000004,"5min":0.79500000000000004,"15min":0.79500000000000004},"last":0.52000000000000002},{"interface":"front","average":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.65900000000000003}]},{"osd":6,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.61699999999999999},{"interface":"front","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"last":0.56100000000000005}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.42499999999999999},{"interface":"front","average":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"last":0.45000000000000001}]}]},{"osd":6,"up_from":30,"seq":128849018899,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"last":0.35799999999999998},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.24399999999999999,"5min":0.24399999999999999,"15min":0.24399999999999999},"max":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"last":0.27500000000000002}]},{"osd":1,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.318,"5min":0.318,"15min":0.318},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.58799999999999997},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.45600000000000002}]},{"osd":2,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"last":0.30299999999999999},{"interface":"front","average":{"1min":0.442,"5min":0.442,"15min":0.442},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"last":0.42499999999999999}]},{"osd":3,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"last":0.501},{"interface":"front","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.41499999999999998}]},{"osd":4,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.379},{"interface":"front","average":{"1min":0.48499999999999999,"5min":0.48499999999999999,"15min":0.48499999999999999},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.68600000000000005,"5min":0.68600000000000005,"15min":0.68600000000000005},"last":0.39600000000000002}]},{"osd":5,"last update":"Tue Sep 17 07:21:23 2024","interfaces":[{"interface":"back","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.73799999999999999,"5min":0.73799999999999999,"15min":0.73799999999999999},"last":0.46800000000000003},{"interface":"front","average":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.752,"5min":0.752,"15min":0.752},"last":0.52400000000000002}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.53700000000000003},{"interface":"front","average":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.55100000000000005}]}]},{"osd":3,"up_from":29,"seq":124554051603,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1044480,"data_stored":771612,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.71299999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"last":0.379},{"interface":"front","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"last":0.53000000000000003}]},{"osd":1,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.32900000000000001,"5min":0.32900000000000001,"15min":0.32900000000000001},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.30399999999999999},{"interface":"front","average":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"last":0.48899999999999999}]},{"osd":2,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.66000000000000003},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.435}]},{"osd":4,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.68600000000000005,"5min":0.68600000000000005,"15min":0.68600000000000005},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.34999999999999998,"5min":0.34999999999999998,"15min":0.34999999999999998},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.61699999999999999}]},{"osd":5,"last update":"Tue Sep 17 07:21:25 2024","interfaces":[{"interface":"back","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.39800000000000002},{"interface":"front","average":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"last":0.54300000000000004}]},{"osd":6,"last update":"Tue Sep 17 07:21:16 2024","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.69999999999999996,"5min":0.69999999999999996,"15min":0.69999999999999996},"last":0.47299999999999998},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.58399999999999996}]},{"osd":7,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.60099999999999998},{"interface":"front","average":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.752,"5min":0.752,"15min":0.752},"last":0.68799999999999994}]}]},{"osd":4,"up_from":25,"seq":107374182420,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1596,"internal_metadata":27654596},"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 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.19700000000000001,"5min":0.19700000000000001,"15min":0.19700000000000001},"max":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"last":0.33700000000000002},{"interface":"front","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.442}]},{"osd":1,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.66300000000000003,"5min":0.66300000000000003,"15min":0.66300000000000003},"last":0.40600000000000003},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.54000000000000004}]},{"osd":2,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"last":0.47899999999999998},{"interface":"front","average":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"last":0.308}]},{"osd":3,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.42099999999999999},{"interface":"front","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.495}]},{"osd":5,"last update":"Tue Sep 17 07:21:21 2024","interfaces":[{"interface":"back","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.43099999999999999},{"interface":"front","average":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.68000000000000005,"5min":0.68000000000000005,"15min":0.68000000000000005},"last":0.46500000000000002}]},{"osd":6,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.38400000000000001},{"interface":"front","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.503}]},{"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.55300000000000005}]}]},{"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":27464,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713592,"statfs":{"total":95990841344,"available":95962718208,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.215,"5min":0.215,"15min":0.215},"max":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"last":0.56699999999999995},{"interface":"front","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"last":0.45500000000000002}]},{"osd":1,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"last":0.5},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.47699999999999998}]},{"osd":3,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.436,"5min":0.436,"15min":0.436},"max":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"last":0.54700000000000004},{"interface":"front","average":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"min":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":0.81299999999999994,"5min":0.81299999999999994,"15min":0.81299999999999994},"last":0.60599999999999998}]},{"osd":4,"last update":"Tue Sep 17 07:21:10 2024","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.248,"5min":0.248,"15min":0.248},"max":{"1min":0.505,"5min":0.505,"15min":0.505},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.52800000000000002}]},{"osd":5,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.83899999999999997,"5min":0.83899999999999997,"15min":0.83899999999999997},"last":0.63700000000000001},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.66000000000000003}]},{"osd":6,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.65300000000000002,"5min":0.65300000000000002,"15min":0.65300000000000002},"last":0.68500000000000005},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.69499999999999995}]},{"osd":7,"last update":"Tue Sep 17 07:21:32 2024","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.624},{"interface":"front","average":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.85499999999999998,"5min":0.85499999999999998,"15min":0.85499999999999998},"last":0.67300000000000004}]}]},{"osd":1,"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":27464,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713592,"statfs":{"total":95990841344,"available":95962718208,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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 07:21:04 2024","interfaces":[{"interface":"back","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.20200000000000001,"5min":0.20200000000000001,"15min":0.20200000000000001},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.51800000000000002},{"interface":"front","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.17599999999999999,"5min":0.17599999999999999,"15min":0.17599999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.437}]},{"osd":2,"last update":"Tue Sep 17 07:21:04 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.41199999999999998},{"interface":"front","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.22500000000000001,"5min":0.22500000000000001,"15min":0.22500000000000001},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.44700000000000001}]},{"osd":3,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"last":0.371},{"interface":"front","average":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"min":{"1min":0.217,"5min":0.217,"15min":0.217},"max":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"last":0.33300000000000002}]},{"osd":4,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.497},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"last":0.48499999999999999}]},{"osd":5,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"last":0.35999999999999999}]},{"osd":6,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.42399999999999999},{"interface":"front","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.46999999999999997}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"min":{"1min":0.27400000000000002,"5min":0.27400000000000002,"15min":0.27400000000000002},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.40400000000000003},{"interface":"front","average":{"1min":0.443,"5min":0.443,"15min":0.443},"min":{"1min":0.317,"5min":0.317,"15min":0.317},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.39500000000000002}]}]},{"osd":0,"up_from":16,"seq":68719476757,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1044480,"data_stored":771612,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.66700000000000004},{"interface":"front","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.33500000000000002,"5min":0.33500000000000002,"15min":0.33500000000000002},"max":{"1min":0.77300000000000002,"5min":0.77300000000000002,"15min":0.77300000000000002},"last":0.51400000000000001}]},{"osd":2,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"min":{"1min":0.23799999999999999,"5min":0.23799999999999999,"15min":0.23799999999999999},"max":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.39400000000000002},{"interface":"front","average":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"min":{"1min":0.253,"5min":0.253,"15min":0.253},"max":{"1min":0.47399999999999998,"5min":0.47399999999999998,"15min":0.47399999999999998},"last":0.47199999999999998}]},{"osd":3,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.56100000000000005},{"interface":"front","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.57199999999999995}]},{"osd":4,"last update":"Tue Sep 17 07:21:09 2024","interfaces":[{"interface":"back","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"last":0.53000000000000003},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.45600000000000002}]},{"osd":5,"last update":"Tue Sep 17 07:21:25 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.60699999999999998},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"last":0.49399999999999999}]},{"osd":6,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"last":0.59399999999999997},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"last":0.64700000000000002}]},{"osd":7,"last update":"Tue Sep 17 07:21:31 2024","interfaces":[{"interface":"back","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.0069999999999999,"5min":1.0069999999999999,"15min":1.0069999999999999},"last":0.54600000000000004},{"interface":"front","average":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.85999999999999999,"5min":0.85999999999999999,"15min":0.85999999999999999},"last":0.61799999999999999}]}]}],"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-17T07:21:39.587 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T07:21:39.783 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:40 smithi175 ceph-mon[34607]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:21:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:40 smithi175 ceph-mon[34607]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:40.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:40 smithi144 ceph-mon[25842]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:21:40.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:40 smithi144 ceph-mon[25842]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:41.800 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:21:41.801 INFO:teuthology.orchestra.run.smithi144.stderr:dumped all 2024-09-17T07:21:42.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:42 smithi175 ceph-mon[34607]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:42.584 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:42 smithi144 ceph-mon[25842]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:42.608 INFO:teuthology.orchestra.run.smithi144.stdout:{"pg_ready":true,"pg_map":{"version":138,"stamp":"2024-09-17T07:21:41.085265+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":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":221460,"kb_used_data":5256,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706988,"statfs":{"total":767926730752,"available":767699955712,"internally_reserved":0,"allocated":5382144,"data_stored":3220775,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12753,"internal_metadata":221236783},"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.002083"},"pg_stats":[{"pgid":"1.0","version":"27'197","reported_seq":281,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-17T07:20:32.257611+0000","last_change":"2024-09-17T07:20:32.257334+0000","last_active":"2024-09-17T07:20:32.257611+0000","last_peered":"2024-09-17T07:20:32.257611+0000","last_clean":"2024-09-17T07:20:32.257611+0000","last_became_active":"2024-09-17T07:20:32.256953+0000","last_became_peered":"2024-09-17T07:20:32.256953+0000","last_unstale":"2024-09-17T07:20:32.257611+0000","last_undegraded":"2024-09-17T07:20:32.257611+0000","last_fullsized":"2024-09-17T07:20:32.257611+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T07:20:05.953245+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T07:20:05.953245+0000","last_clean_scrub_stamp":"2024-09-17T07:20:05.953245+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-18T12:52:23.233929+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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":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":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":40,"seq":171798691856,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1016,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1040384,"data_stored":771331,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.23599999999999999},{"interface":"front","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"last":0.26100000000000001}]},{"osd":1,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"last":0.251},{"interface":"front","average":{"1min":0.35599999999999998,"5min":0.35599999999999998,"15min":0.35599999999999998},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"last":0.35999999999999999}]},{"osd":2,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.77600000000000002,"5min":0.77600000000000002,"15min":0.77600000000000002},"last":0.29199999999999998},{"interface":"front","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.30199999999999999}]},{"osd":3,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27400000000000002,"5min":0.27400000000000002,"15min":0.27400000000000002},"max":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"last":0.316},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.32900000000000001}]},{"osd":4,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.371},{"interface":"front","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.41599999999999998}]},{"osd":5,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.29199999999999998,"5min":0.29199999999999998,"15min":0.29199999999999998},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.379},{"interface":"front","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.39100000000000001}]},{"osd":6,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.75700000000000001,"5min":0.75700000000000001,"15min":0.75700000000000001},"last":0.46100000000000002},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.40500000000000003}]}]},{"osd":5,"up_from":36,"seq":154618822675,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27460,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713596,"statfs":{"total":95990841344,"available":95962722304,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.628},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.59599999999999997}]},{"osd":1,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"last":0.54100000000000004},{"interface":"front","average":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"min":{"1min":0.23899999999999999,"5min":0.23899999999999999,"15min":0.23899999999999999},"max":{"1min":0.49399999999999999,"5min":0.49399999999999999,"15min":0.49399999999999999},"last":0.47199999999999998}]},{"osd":2,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.76500000000000001,"5min":0.76500000000000001,"15min":0.76500000000000001},"last":0.64400000000000002},{"interface":"front","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.52800000000000002}]},{"osd":3,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.45300000000000001,"5min":0.45300000000000001,"15min":0.45300000000000001},"last":0.45300000000000001},{"interface":"front","average":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"last":0.5}]},{"osd":4,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.52600000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.79500000000000004,"5min":0.79500000000000004,"15min":0.79500000000000004},"last":0.58499999999999996},{"interface":"front","average":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.60599999999999998}]},{"osd":6,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"max":{"1min":0.77100000000000002,"5min":0.77100000000000002,"15min":0.77100000000000002},"last":0.622},{"interface":"front","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"last":0.66800000000000004}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.42399999999999999,"5min":0.42399999999999999,"15min":0.42399999999999999},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"last":0.56699999999999995}]}]},{"osd":6,"up_from":30,"seq":128849018900,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.58199999999999996,"5min":0.58199999999999996,"15min":0.58199999999999996},"last":0.308},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.24399999999999999,"5min":0.24399999999999999,"15min":0.24399999999999999},"max":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"last":0.39700000000000002}]},{"osd":1,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.318,"5min":0.318,"15min":0.318},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.41599999999999998},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.34799999999999998,"5min":0.34799999999999998,"15min":0.34799999999999998},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.55100000000000005}]},{"osd":2,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.40799999999999997,"5min":0.40799999999999997,"15min":0.40799999999999997},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"last":0.42999999999999999},{"interface":"front","average":{"1min":0.442,"5min":0.442,"15min":0.442},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"last":0.33100000000000002}]},{"osd":3,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"last":0.46800000000000003},{"interface":"front","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.48799999999999999}]},{"osd":4,"last update":"Tue Sep 17 07:21:17 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.45300000000000001},{"interface":"front","average":{"1min":0.48499999999999999,"5min":0.48499999999999999,"15min":0.48499999999999999},"min":{"1min":0.32700000000000001,"5min":0.32700000000000001,"15min":0.32700000000000001},"max":{"1min":0.68600000000000005,"5min":0.68600000000000005,"15min":0.68600000000000005},"last":0.502}]},{"osd":5,"last update":"Tue Sep 17 07:21:23 2024","interfaces":[{"interface":"back","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.73799999999999999,"5min":0.73799999999999999,"15min":0.73799999999999999},"last":0.53800000000000003},{"interface":"front","average":{"1min":0.55700000000000005,"5min":0.55700000000000005,"15min":0.55700000000000005},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.752,"5min":0.752,"15min":0.752},"last":0.59299999999999997}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.52700000000000002},{"interface":"front","average":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.56399999999999995}]}]},{"osd":3,"up_from":29,"seq":124554051604,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1044480,"data_stored":771612,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.71299999999999997,"5min":0.71299999999999997,"15min":0.71299999999999997},"last":0.45400000000000001},{"interface":"front","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.36299999999999999,"5min":0.36299999999999999,"15min":0.36299999999999999},"max":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"last":0.52800000000000002}]},{"osd":1,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.32900000000000001,"5min":0.32900000000000001,"15min":0.32900000000000001},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.37},{"interface":"front","average":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"last":0.35399999999999998}]},{"osd":2,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.57899999999999996},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.41699999999999998}]},{"osd":4,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.68600000000000005,"5min":0.68600000000000005,"15min":0.68600000000000005},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.34999999999999998,"5min":0.34999999999999998,"15min":0.34999999999999998},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.54200000000000004}]},{"osd":5,"last update":"Tue Sep 17 07:21:25 2024","interfaces":[{"interface":"back","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.40600000000000003},{"interface":"front","average":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.58099999999999996,"5min":0.58099999999999996,"15min":0.58099999999999996},"last":0.51200000000000001}]},{"osd":6,"last update":"Tue Sep 17 07:21:16 2024","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.69999999999999996,"5min":0.69999999999999996,"15min":0.69999999999999996},"last":0.55900000000000005},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.76800000000000002,"5min":0.76800000000000002,"15min":0.76800000000000002},"last":0.434}]},{"osd":7,"last update":"Tue Sep 17 07:21:33 2024","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.39500000000000002},{"interface":"front","average":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.752,"5min":0.752,"15min":0.752},"last":0.48899999999999999}]}]},{"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":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1596,"internal_metadata":27654596},"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 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.19700000000000001,"5min":0.19700000000000001,"15min":0.19700000000000001},"max":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"last":0.379},{"interface":"front","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.39800000000000002}]},{"osd":1,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39700000000000002,"5min":0.39700000000000002,"15min":0.39700000000000002},"max":{"1min":0.66300000000000003,"5min":0.66300000000000003,"15min":0.66300000000000003},"last":0.57399999999999995},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.76800000000000002}]},{"osd":2,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"last":0.44800000000000001},{"interface":"front","average":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"last":0.51400000000000001}]},{"osd":3,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.63600000000000001},{"interface":"front","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.66400000000000003}]},{"osd":5,"last update":"Tue Sep 17 07:21:21 2024","interfaces":[{"interface":"back","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.40100000000000002,"5min":0.40100000000000002,"15min":0.40100000000000002},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.61899999999999999},{"interface":"front","average":{"1min":0.57799999999999996,"5min":0.57799999999999996,"15min":0.57799999999999996},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.68000000000000005,"5min":0.68000000000000005,"15min":0.68000000000000005},"last":0.60599999999999998}]},{"osd":6,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.55100000000000005},{"interface":"front","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.58599999999999997}]},{"osd":7,"last update":"Tue Sep 17 07:21:34 2024","interfaces":[{"interface":"back","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":0.81100000000000005,"5min":0.81100000000000005,"15min":0.81100000000000005},"last":0.81100000000000005},{"interface":"front","average":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.78200000000000003}]}]},{"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":27464,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713592,"statfs":{"total":95990841344,"available":95962718208,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.215,"5min":0.215,"15min":0.215},"max":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"last":0.47499999999999998},{"interface":"front","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"last":0.34999999999999998}]},{"osd":1,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.67000000000000004,"5min":0.67000000000000004,"15min":0.67000000000000004},"last":0.42399999999999999},{"interface":"front","average":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.45500000000000002}]},{"osd":3,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.436,"5min":0.436,"15min":0.436},"max":{"1min":0.68700000000000006,"5min":0.68700000000000006,"15min":0.68700000000000006},"last":0.51500000000000001},{"interface":"front","average":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"min":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":0.81299999999999994,"5min":0.81299999999999994,"15min":0.81299999999999994},"last":0.44}]},{"osd":4,"last update":"Tue Sep 17 07:21:10 2024","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.248,"5min":0.248,"15min":0.248},"max":{"1min":0.505,"5min":0.505,"15min":0.505},"last":0.48999999999999999},{"interface":"front","average":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"min":{"1min":0.312,"5min":0.312,"15min":0.312},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.52500000000000002}]},{"osd":5,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.83899999999999997,"5min":0.83899999999999997,"15min":0.83899999999999997},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.5}]},{"osd":6,"last update":"Tue Sep 17 07:21:18 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.28100000000000003,"5min":0.28100000000000003,"15min":0.28100000000000003},"max":{"1min":0.65300000000000002,"5min":0.65300000000000002,"15min":0.65300000000000002},"last":0.53500000000000003},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.59999999999999998}]},{"osd":7,"last update":"Tue Sep 17 07:21:32 2024","interfaces":[{"interface":"back","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.56899999999999995},{"interface":"front","average":{"1min":0.59799999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.85499999999999998,"5min":0.85499999999999998,"15min":0.85499999999999998},"last":0.57899999999999996}]}]},{"osd":1,"up_from":20,"seq":85899345943,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27464,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713592,"statfs":{"total":95990841344,"available":95962718208,"internally_reserved":0,"allocated":450560,"data_stored":181244,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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 07:21:04 2024","interfaces":[{"interface":"back","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.20200000000000001,"5min":0.20200000000000001,"15min":0.20200000000000001},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.57499999999999996},{"interface":"front","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.17599999999999999,"5min":0.17599999999999999,"15min":0.17599999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.44700000000000001}]},{"osd":2,"last update":"Tue Sep 17 07:21:04 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.40899999999999997},{"interface":"front","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.22500000000000001,"5min":0.22500000000000001,"15min":0.22500000000000001},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.59399999999999997}]},{"osd":3,"last update":"Tue Sep 17 07:21:13 2024","interfaces":[{"interface":"back","average":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"last":0.55800000000000005},{"interface":"front","average":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"min":{"1min":0.217,"5min":0.217,"15min":0.217},"max":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"last":0.54400000000000004}]},{"osd":4,"last update":"Tue Sep 17 07:21:11 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.63500000000000001},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.72699999999999998,"5min":0.72699999999999998,"15min":0.72699999999999998},"last":0.51400000000000001}]},{"osd":5,"last update":"Tue Sep 17 07:21:22 2024","interfaces":[{"interface":"back","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"last":0.48099999999999998},{"interface":"front","average":{"1min":0.41999999999999998,"5min":0.41999999999999998,"15min":0.41999999999999998},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"last":0.49199999999999999}]},{"osd":6,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.46300000000000002},{"interface":"front","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.52900000000000003}]},{"osd":7,"last update":"Tue Sep 17 07:21:29 2024","interfaces":[{"interface":"back","average":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"min":{"1min":0.27400000000000002,"5min":0.27400000000000002,"15min":0.27400000000000002},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.624},{"interface":"front","average":{"1min":0.443,"5min":0.443,"15min":0.443},"min":{"1min":0.317,"5min":0.317,"15min":0.317},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.60699999999999998}]}]},{"osd":0,"up_from":16,"seq":68719476758,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1044480,"data_stored":771612,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.66000000000000003,"5min":0.66000000000000003,"15min":0.66000000000000003},"last":0.63400000000000001},{"interface":"front","average":{"1min":0.502,"5min":0.502,"15min":0.502},"min":{"1min":0.33500000000000002,"5min":0.33500000000000002,"15min":0.33500000000000002},"max":{"1min":0.77300000000000002,"5min":0.77300000000000002,"15min":0.77300000000000002},"last":0.64500000000000002}]},{"osd":2,"last update":"Tue Sep 17 07:21:06 2024","interfaces":[{"interface":"back","average":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"min":{"1min":0.23799999999999999,"5min":0.23799999999999999,"15min":0.23799999999999999},"max":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.35499999999999998},{"interface":"front","average":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"min":{"1min":0.253,"5min":0.253,"15min":0.253},"max":{"1min":0.47399999999999998,"5min":0.47399999999999998,"15min":0.47399999999999998},"last":0.42199999999999999}]},{"osd":3,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.68400000000000005},{"interface":"front","average":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.60699999999999998}]},{"osd":4,"last update":"Tue Sep 17 07:21:09 2024","interfaces":[{"interface":"back","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.29499999999999998,"5min":0.29499999999999998,"15min":0.29499999999999998},"max":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"last":0.45900000000000002},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.47099999999999997}]},{"osd":5,"last update":"Tue Sep 17 07:21:25 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":0.70099999999999996,"5min":0.70099999999999996,"15min":0.70099999999999996},"last":0.67600000000000005},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.84199999999999997,"5min":0.84199999999999997,"15min":0.84199999999999997},"last":0.621}]},{"osd":6,"last update":"Tue Sep 17 07:21:15 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"last":0.504},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"last":0.48899999999999999}]},{"osd":7,"last update":"Tue Sep 17 07:21:31 2024","interfaces":[{"interface":"back","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":1.0069999999999999,"5min":1.0069999999999999,"15min":1.0069999999999999},"last":0.69799999999999995},{"interface":"front","average":{"1min":0.58599999999999997,"5min":0.58599999999999997,"15min":0.58599999999999997},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.85999999999999999,"5min":0.85999999999999999,"15min":0.85999999999999999},"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-17T07:21:42.611 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T07:21:42.611 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T07:21:42.611 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T07:21:42.611 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9 shell --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T07:21:42.812 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:43.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:43 smithi175 ceph-mon[34607]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:21:43.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:43 smithi144 ceph-mon[25842]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:21:44.281 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:44 smithi144 ceph-mon[25842]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:44.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:44 smithi175 ceph-mon[34607]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:44.705 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:21:44.706 INFO:teuthology.orchestra.run.smithi144.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T07:21:45.349 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:45 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1491384146' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T07:21:45.373 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T07:21:45.374 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T07:21:45.374 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:21:45.382 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:21:45.383 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T07:21:45.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:45 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1491384146' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-17T07:21:45.586 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:46.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:46 smithi144 ceph-mon[25842]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:46 smithi175 ceph-mon[34607]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:47.449 INFO:teuthology.orchestra.run.smithi144.stdout:Backend: cephadm 2024-09-17T07:21:47.449 INFO:teuthology.orchestra.run.smithi144.stdout:Available: Yes 2024-09-17T07:21:47.449 INFO:teuthology.orchestra.run.smithi144.stdout:Paused: No 2024-09-17T07:21:48.145 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T07:21:48.353 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:48.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:48 smithi144 ceph-mon[25842]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:48.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:48 smithi175 ceph-mon[34607]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:49.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:49 smithi175 ceph-mon[34607]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:49.627 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:49 smithi144 ceph-mon[25842]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:alertmanager.smithi144 smithi144 *:9093,9094 running (2m) 73s ago 4m 25.6M - 0.25.0 c8568f914cd2 3e39bb226c64 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter.smithi144 smithi144 running (4m) 73s ago 4m 7079k - 18.2.4-855-g19e2a2be 980a0bfcd684 b5c002d9d476 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter.smithi175 smithi175 running (3m) 80s ago 3m 7231k - 18.2.4-855-g19e2a2be 980a0bfcd684 64b9a8eedee0 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:crash.smithi144 smithi144 running (4m) 73s ago 4m 6891k - 18.2.4-855-g19e2a2be 980a0bfcd684 a21ca9a6e633 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:crash.smithi175 smithi175 running (3m) 80s ago 3m 6895k - 18.2.4-855-g19e2a2be 980a0bfcd684 5b7574eaa368 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:grafana.smithi144 smithi144 *:3000 running (2m) 73s ago 3m 77.1M - 9.4.7 954c08fa6188 41dc69b87afc 2024-09-17T07:21:50.387 INFO:teuthology.orchestra.run.smithi144.stdout:mgr.smithi144.lblkyt smithi144 *:9283,8765,8443 running (5m) 73s ago 5m 482M - 18.2.4-855-g19e2a2be 980a0bfcd684 5fc8135b7703 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:mgr.smithi175.okpzhb smithi175 *:8443,9283,8765 running (3m) 80s ago 3m 440M - 18.2.4-855-g19e2a2be 980a0bfcd684 7c1f30cd44ee 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:mon.smithi144 smithi144 running (5m) 73s ago 5m 47.1M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 4fcc6b81addc 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:mon.smithi175 smithi175 running (3m) 80s ago 3m 41.4M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 9a0f85788058 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter.smithi144 smithi144 *:9100 running (4m) 73s ago 4m 16.2M - 1.5.0 0da6a335fe13 44b6c4ea0b0a 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter.smithi175 smithi175 *:9100 running (3m) 80s ago 3m 14.3M - 1.5.0 0da6a335fe13 85b78c42faa3 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.0 smithi175 running (117s) 80s ago 117s 38.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 d04fba2cae77 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.1 smithi144 running (112s) 73s ago 112s 40.1M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 0eaf211d6774 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.2 smithi175 running (112s) 80s ago 112s 41.5M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 ff02fa0dbcb8 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.3 smithi144 running (103s) 73s ago 103s 36.7M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 c9168b4fbefc 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.4 smithi175 running (107s) 80s ago 107s 31.2M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 afb8d9190b5e 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.5 smithi144 running (95s) 73s ago 95s 35.6M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 836b92c3ed00 2024-09-17T07:21:50.388 INFO:teuthology.orchestra.run.smithi144.stdout:osd.6 smithi175 running (102s) 80s ago 102s 38.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 9befd77f132d 2024-09-17T07:21:50.389 INFO:teuthology.orchestra.run.smithi144.stdout:osd.7 smithi144 running (86s) 73s ago 86s 29.9M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 8ae65a7f1f60 2024-09-17T07:21:50.389 INFO:teuthology.orchestra.run.smithi144.stdout:prometheus.smithi144 smithi144 *:9095 running (2m) 73s ago 3m 40.4M - 2.43.0 a07b618ecd1d 1beb2528053f 2024-09-17T07:21:50.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:50 smithi175 ceph-mon[34607]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:50.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:50 smithi144 ceph-mon[25842]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:51.132 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T07:21:51.335 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:51.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:51 smithi144 ceph-mon[25842]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:51.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:51 smithi175 ceph-mon[34607]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:52.557 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:52 smithi144 ceph-mon[25842]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:52.558 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:52 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:21:52.586 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:52 smithi175 ceph-mon[34607]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:52.586 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:52 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:21:53.340 INFO:teuthology.orchestra.run.smithi144.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T07:21:53.340 INFO:teuthology.orchestra.run.smithi144.stdout:alertmanager ?:9093,9094 1/1 76s ago 4m count:1 2024-09-17T07:21:53.340 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter 2/2 83s ago 4m * 2024-09-17T07:21:53.340 INFO:teuthology.orchestra.run.smithi144.stdout:crash 2/2 83s ago 5m * 2024-09-17T07:21:53.340 INFO:teuthology.orchestra.run.smithi144.stdout:grafana ?:3000 1/1 76s ago 4m count:1 2024-09-17T07:21:53.341 INFO:teuthology.orchestra.run.smithi144.stdout:mgr 2/2 83s ago 5m count:2 2024-09-17T07:21:53.341 INFO:teuthology.orchestra.run.smithi144.stdout:mon 2/2 83s ago 4m smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175;count:2 2024-09-17T07:21:53.341 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter ?:9100 2/2 83s ago 4m * 2024-09-17T07:21:53.341 INFO:teuthology.orchestra.run.smithi144.stdout:osd.all-available-devices 8 83s ago 3m * 2024-09-17T07:21:53.341 INFO:teuthology.orchestra.run.smithi144.stdout:prometheus ?:9095 1/1 76s ago 4m count:1 2024-09-17T07:21:54.464 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T07:21:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:54 smithi175 ceph-mon[34607]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:54 smithi175 ceph-mon[34607]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:21:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:21:54.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:54.488 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:54 smithi144 ceph-mon[25842]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:54.488 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:54 smithi144 ceph-mon[25842]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:54.488 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:21:54.488 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:21:54.488 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:21:54.800 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:21:56.580 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:56 smithi144 ceph-mon[25842]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:56.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:56 smithi175 ceph-mon[34607]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:56.908 INFO:teuthology.orchestra.run.smithi144.stdout:HOST ADDR LABELS STATUS 2024-09-17T07:21:56.908 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 172.21.15.144 2024-09-17T07:21:56.908 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 172.21.15.175 2024-09-17T07:21:56.908 INFO:teuthology.orchestra.run.smithi144.stdout:2 hosts in cluster 2024-09-17T07:21:58.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:58 smithi144 ceph-mon[25842]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:58.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:21:58 smithi144 ceph-mon[25842]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:58.674 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T07:21:58.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:58 smithi175 ceph-mon[34607]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:21:58.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:21:58 smithi175 ceph-mon[34607]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:21:59.103 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:00.592 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:00 smithi144 ceph-mon[25842]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:00.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:00 smithi175 ceph-mon[34607]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT62050085400BGN 372G No 80s ago Has a FileSystem, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme1n1 ssd Linux_7f92df8d0f451d568fbc 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme2n1 ssd Linux_dea71e366a39d07cc00f 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme3n1 ssd Linux_21fb870e18227381293c 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme4n1 ssd Linux_5a3ac95ac9c891cc3cc8 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300M0400BGN 372G No 87s ago Has a FileSystem, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme1n1 ssd Linux_b2c8e4c9f39869b04136 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme2n1 ssd Linux_7452f9f7f1974b9b07a5 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme3n1 ssd Linux_dea26104e97055a36259 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:01.481 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme4n1 ssd Linux_c9219db9d0d04b4c0648 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:02.624 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:02 smithi144 ceph-mon[25842]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:02.625 INFO:teuthology.run_tasks:Running task vip... 2024-09-17T07:22:02.634 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-17T07:22:02.634 INFO:tasks.vip:peername 172.21.15.144 2024-09-17T07:22:02.638 INFO:tasks.vip:172.21.15.144 in 172.21.0.0/20, pos 3983 2024-09-17T07:22:02.642 INFO:tasks.vip:smithi144.front.sepia.ceph.com static 10.0.15.144, vnet 10.0.0.0/16 2024-09-17T07:22:02.642 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-09-17T07:22:02.642 DEBUG:teuthology.orchestra.run.smithi144:> sudo ip route ls 2024-09-17T07:22:02.669 INFO:teuthology.orchestra.run.smithi144.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.144 metric 100 2024-09-17T07:22:02.669 INFO:teuthology.orchestra.run.smithi144.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.144 metric 100 2024-09-17T07:22:02.671 INFO:tasks.vip:Configuring 10.0.15.144 on smithi144.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T07:22:02.671 DEBUG:teuthology.orchestra.run.smithi144:> sudo ip addr add 10.0.15.144/16 dev enp3s0f1 2024-09-17T07:22:02.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:02 smithi175 ceph-mon[34607]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:02.739 INFO:tasks.vip:peername 172.21.15.175 2024-09-17T07:22:02.742 INFO:tasks.vip:172.21.15.175 in 172.21.0.0/20, pos 4014 2024-09-17T07:22:02.807 INFO:tasks.vip:smithi175.front.sepia.ceph.com static 10.0.15.175, vnet 10.0.0.0/16 2024-09-17T07:22:02.807 DEBUG:teuthology.orchestra.run.smithi175:> sudo ip route ls 2024-09-17T07:22:02.839 INFO:teuthology.orchestra.run.smithi175.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.175 metric 100 2024-09-17T07:22:02.839 INFO:teuthology.orchestra.run.smithi175.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.175 metric 100 2024-09-17T07:22:02.840 INFO:tasks.vip:Configuring 10.0.15.175 on smithi175.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T07:22:02.841 DEBUG:teuthology.orchestra.run.smithi175:> sudo ip addr add 10.0.15.175/16 dev enp3s0f1 2024-09-17T07:22:02.911 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:22:02.921 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:02.921 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-17T07:22:03.125 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:03.523 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='client.14564 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.524 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:03 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:22:03.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='client.14564 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:03.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:03 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:22:04.571 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:04 smithi144 ceph-mon[25842]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:04.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:04 smithi175 ceph-mon[34607]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT62050085400BGN 372G No 83s ago Has a FileSystem, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme1n1 ssd Linux_7f92df8d0f451d568fbc 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme2n1 ssd Linux_dea71e366a39d07cc00f 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme3n1 ssd Linux_21fb870e18227381293c 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme4n1 ssd Linux_5a3ac95ac9c891cc3cc8 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300M0400BGN 372G No 90s ago Has a FileSystem, LVM detected 2024-09-17T07:22:05.119 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme1n1 ssd Linux_b2c8e4c9f39869b04136 89.4G No 90s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.120 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme2n1 ssd Linux_7452f9f7f1974b9b07a5 89.4G No 90s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.120 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme3n1 ssd Linux_dea26104e97055a36259 89.4G No 90s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.120 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme4n1 ssd Linux_c9219db9d0d04b4c0648 89.4G No 90s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:22:05.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:05 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:22:05.674 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:05 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:22:05.815 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T07:22:05.825 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:05.825 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T07:22:05.852 INFO:teuthology.orchestra.run.smithi144.stderr:+ systemctl stop nfs-server 2024-09-17T07:22:05.861 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi175.front.sepia.ceph.com 2024-09-17T07:22:05.861 DEBUG:teuthology.orchestra.run.smithi175:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T07:22:05.886 INFO:teuthology.orchestra.run.smithi175.stderr:+ systemctl stop nfs-server 2024-09-17T07:22:05.893 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:22:05.902 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:05.902 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-17T07:22:06.325 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:06 smithi144 ceph-mon[25842]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:06.326 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:06 smithi144 ceph-mon[25842]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:06.515 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:06 smithi175 ceph-mon[34607]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:06.515 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:06 smithi175 ceph-mon[34607]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:06.598 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:08.171 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.171 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:08 smithi144 ceph-mon[25842]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:08.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.172 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:08 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:08 smithi175 ceph-mon[34607]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:08 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:08.839 INFO:teuthology.orchestra.run.smithi144.stdout:Scheduled rgw.foorgw update... 2024-09-17T07:22:10.082 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:09 smithi144 ceph-mon[25842]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:10.083 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:09 smithi144 ceph-mon[25842]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T07:22:10.083 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:10.083 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:09 smithi144 ceph-mon[25842]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:10.083 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:10.132 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.144/16' 2024-09-17T07:22:10.194 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:09 smithi175 ceph-mon[34607]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:10.194 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:09 smithi175 ceph-mon[34607]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T07:22:10.194 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:10.194 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:09 smithi175 ceph-mon[34607]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:10.194 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:10.621 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:12.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:12.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:11 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:12.131 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:11 smithi144 ceph-mon[25842]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:12.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:12.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:11 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:12.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:11 smithi175 ceph-mon[34607]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:14.442 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='client.14576 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.144/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.443 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:14 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='client.14576 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.144/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:14.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:14 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:15.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T07:22:15.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:15 smithi175 ceph-mon[34607]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T07:22:15.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:15 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T07:22:15.571 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T07:22:15.572 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:15 smithi144 ceph-mon[25842]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T07:22:15.572 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:15 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-17T07:22:16.204 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: pgmap v156: 33 pgs: 12 creating+peering, 20 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:16.204 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:16.204 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T07:22:16.205 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T07:22:16.205 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: Saving service nfs.foo spec with placement count:1 2024-09-17T07:22:16.205 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:16.205 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T07:22:16.205 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:16 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:16.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: pgmap v156: 33 pgs: 12 creating+peering, 20 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T07:22:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T07:22:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: Saving service nfs.foo spec with placement count:1 2024-09-17T07:22:16.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:16.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T07:22:16.481 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:16 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:16.567 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T07:22:16.577 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:16.578 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-17T07:22:16.604 INFO:teuthology.orchestra.run.smithi144.stderr:+ dnf install -y python3-boto3 2024-09-17T07:22:17.194 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:08:00 ago on Tue 17 Sep 2024 07:14:16 AM UTC. 2024-09-17T07:22:17.339 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-09-17T07:22:17.339 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:22:17.339 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-09-17T07:22:17.339 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:22:17.339 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout:Install 5 Packages 2024-09-17T07:22:17.340 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:17.354 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 6.6 M 2024-09-17T07:22:17.354 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 86 M 2024-09-17T07:22:17.354 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-09-17T07:22:17.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:17 smithi175 ceph-mon[34607]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T07:22:17.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:17 smithi144 ceph-mon[25842]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T07:22:17.698 INFO:teuthology.orchestra.run.smithi144.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 2.8 MB/s | 164 kB 00:00 2024-09-17T07:22:17.856 INFO:teuthology.orchestra.run.smithi144.stdout:(2/5): python3-botocore-1.31.62-2.el9.noarch.rp 39 MB/s | 6.1 MB 00:00 2024-09-17T07:22:17.898 INFO:teuthology.orchestra.run.smithi144.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 2.7 MB/s | 113 kB 00:00 2024-09-17T07:22:18.032 INFO:teuthology.orchestra.run.smithi144.stdout:(4/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 127 kB/s | 50 kB 00:00 2024-09-17T07:22:18.217 INFO:teuthology.orchestra.run.smithi144.stdout:(5/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 372 kB/s | 215 kB 00:00 2024-09-17T07:22:18.218 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-09-17T07:22:18.218 INFO:teuthology.orchestra.run.smithi144.stdout:Total 7.7 MB/s | 6.6 MB 00:00 2024-09-17T07:22:18.242 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-09-17T07:22:18.252 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-09-17T07:22:18.252 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-09-17T07:22:18.329 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:18 smithi144 ceph-mon[25842]: pgmap v159: 33 pgs: 5 active+clean, 12 creating+peering, 16 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:18.329 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:18 smithi144 ceph-mon[25842]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:18.329 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:18 smithi144 ceph-mon[25842]: Cluster is now healthy 2024-09-17T07:22:18.329 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:18 smithi144 ceph-mon[25842]: mgrmap e20: smithi144.lblkyt(active, since 4m), standbys: smithi175.okpzhb 2024-09-17T07:22:18.372 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-09-17T07:22:18.386 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-09-17T07:22:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:18 smithi175 ceph-mon[34607]: pgmap v159: 33 pgs: 5 active+clean, 12 creating+peering, 16 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:18 smithi175 ceph-mon[34607]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:18 smithi175 ceph-mon[34607]: Cluster is now healthy 2024-09-17T07:22:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:18 smithi175 ceph-mon[34607]: mgrmap e20: smithi144.lblkyt(active, since 4m), standbys: smithi175.okpzhb 2024-09-17T07:22:19.100 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-09-17T07:22:19.229 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-17T07:22:20.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi175.ojpwrm", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi175.ojpwrm", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: Deploying daemon rgw.foorgw.smithi175.ojpwrm on smithi175 2024-09-17T07:22:20.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:19 smithi144 ceph-mon[25842]: pgmap v160: 33 pgs: 14 active+clean, 12 creating+peering, 7 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi175.ojpwrm", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi175.ojpwrm", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:20.431 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:20.432 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: Deploying daemon rgw.foorgw.smithi175.ojpwrm on smithi175 2024-09-17T07:22:20.432 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:19 smithi175 ceph-mon[34607]: pgmap v160: 33 pgs: 14 active+clean, 12 creating+peering, 7 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:22:20.522 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-17T07:22:20.647 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-17T07:22:20.732 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-17T07:22:20.797 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T07:22:22.107 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T07:22:22.107 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-17T07:22:22.107 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-17T07:22:22.107 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-17T07:22:22.107 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-17T07:22:22.397 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: 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-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi144.wiyfjn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi144.wiyfjn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.398 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:22.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: 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-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi144.wiyfjn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi144.wiyfjn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:22.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-17T07:22:22.509 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T07:22:22.510 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:22.510 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-09-17T07:22:22.853 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:22:22.919 INFO:teuthology.orchestra.run.smithi144.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-17T07:22:23.092 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring fsid 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:22:23.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:23 smithi175 ceph-mon[34607]: Deploying daemon rgw.foorgw.smithi144.wiyfjn on smithi144 2024-09-17T07:22:23.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:23 smithi175 ceph-mon[34607]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T07:22:23.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:23 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T07:22:23.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:23 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T07:22:23.603 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:23 smithi144 ceph-mon[25842]: Deploying daemon rgw.foorgw.smithi144.wiyfjn on smithi144 2024-09-17T07:22:23.603 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:23 smithi144 ceph-mon[25842]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T07:22:23.603 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:23 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T07:22:23.603 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:23 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-17T07:22:23.685 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:23.813 INFO:teuthology.orchestra.run.smithi144.stderr:Using ceph image with id '980a0bfcd684' and tag '19e2a2beb6f41a3ab62650e38614eb29b59dcbb9' created on 2024-09-16 16:31:12 +0000 UTC 2024-09-17T07:22:23.813 INFO:teuthology.orchestra.run.smithi144.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: pgmap v163: 65 pgs: 6 creating+peering, 26 unknown, 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:24.185 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: pgmap v163: 65 pgs: 6 creating+peering, 26 unknown, 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T07:22:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T07:22:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T07:22:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:24.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:25.434 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:25 smithi144 ceph-mon[25842]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T07:22:25.435 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:25 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T07:22:25.435 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:25 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T07:22:25.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:25 smithi175 ceph-mon[34607]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T07:22:25.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:25 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T07:22:25.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:25 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-17T07:22:26.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:26 smithi175 ceph-mon[34607]: pgmap v166: 97 pgs: 14 creating+peering, 28 unknown, 55 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 341 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:22:26.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:26 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T07:22:26.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:26 smithi175 ceph-mon[34607]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T07:22:26.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:26 smithi144 ceph-mon[25842]: pgmap v166: 97 pgs: 14 creating+peering, 28 unknown, 55 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 341 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:22:26.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:26 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T07:22:26.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:26 smithi144 ceph-mon[25842]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T07:22:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T07:22:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/516481212' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Creating key for client.nfs.foo.0.0.smithi144.vwdshx 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T07:22:27.632 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Rados config object exists: conf-nfs.foo 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Creating key for client.nfs.foo.0.0.smithi144.vwdshx-rgw 2024-09-17T07:22:27.633 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:27.634 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:27.634 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Bind address in nfs.foo.0.0.smithi144.vwdshx's ganesha conf is defaulting to empty 2024-09-17T07:22:27.634 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:27.634 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: Deploying daemon nfs.foo.0.0.smithi144.vwdshx on smithi144 2024-09-17T07:22:27.634 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:27 smithi144 ceph-mon[25842]: pgmap v169: 129 pgs: 14 creating+peering, 55 unknown, 60 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-09-17T07:22:27.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T07:22:27.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/1911137938' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/516481212' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Creating key for client.nfs.foo.0.0.smithi144.vwdshx 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T07:22:27.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 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-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Rados config object exists: conf-nfs.foo 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Creating key for client.nfs.foo.0.0.smithi144.vwdshx-rgw 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi144.vwdshx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Bind address in nfs.foo.0.0.smithi144.vwdshx's ganesha conf is defaulting to empty 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: Deploying daemon nfs.foo.0.0.smithi144.vwdshx on smithi144 2024-09-17T07:22:27.732 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:27 smithi175 ceph-mon[34607]: pgmap v169: 129 pgs: 14 creating+peering, 55 unknown, 60 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 1 op/s 2024-09-17T07:22:28.678 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:28 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/516481212' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.678 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:28 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.678 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:28 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.678 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:28 smithi144 ceph-mon[25842]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T07:22:28.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:28 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/516481212' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:28 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:28 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T07:22:28.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:28 smithi175 ceph-mon[34607]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/4281442768' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: pgmap v172: 161 pgs: 21 creating+peering, 54 unknown, 86 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 767 B/s wr, 1 op/s 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:29 smithi175 ceph-mon[34607]: Deploying daemon haproxy.nfs.foo.smithi144.ntrjvc on smithi144 2024-09-17T07:22:29.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T07:22:29.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/4281442768' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: pgmap v172: 161 pgs: 21 creating+peering, 54 unknown, 86 active+clean; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 767 B/s wr, 1 op/s 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.882 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:29.883 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:29 smithi144 ceph-mon[25842]: Deploying daemon haproxy.nfs.foo.smithi144.ntrjvc on smithi144 2024-09-17T07:22:30.704 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.704 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? 172.21.15.175:0/4281442768' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.705 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:30 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T07:22:30.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T07:22:30.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? 172.21.15.175:0/4281442768' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:30.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:30 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:31.699 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.700 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:31 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.700 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:31 smithi144 ceph-mon[25842]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.700 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:31 smithi144 ceph-mon[25842]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T07:22:31.700 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:31 smithi144 ceph-mon[25842]: pgmap v175: 161 pgs: 24 creating+peering, 4 unknown, 133 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-09-17T07:22:31.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/768504159' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:31 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:31 smithi175 ceph-mon[34607]: from='client.? ' entity='client.rgw.foorgw.smithi175.ojpwrm' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:31.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:31 smithi175 ceph-mon[34607]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T07:22:31.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:31 smithi175 ceph-mon[34607]: pgmap v175: 161 pgs: 24 creating+peering, 4 unknown, 133 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-09-17T07:22:31.765 INFO:teuthology.run_tasks:Running task python... 2024-09-17T07:22:31.779 INFO:tasks.python:Running python on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:31.779 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-17T07:22:31.779 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T07:22:32.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:32 smithi175 ceph-mon[34607]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:32.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:32 smithi175 ceph-mon[34607]: Cluster is now healthy 2024-09-17T07:22:32.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:32 smithi144 ceph-mon[25842]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:32.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:32 smithi144 ceph-mon[25842]: Cluster is now healthy 2024-09-17T07:22:33.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:33 smithi175 ceph-mon[34607]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T07:22:33.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:33 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T07:22:33.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:33 smithi175 ceph-mon[34607]: pgmap v177: 193 pgs: 32 unknown, 19 creating+peering, 142 active+clean; 578 KiB data, 225 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 1.1 KiB/s wr, 21 op/s 2024-09-17T07:22:33.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:33 smithi144 ceph-mon[25842]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T07:22:33.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:33 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-17T07:22:33.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:33 smithi144 ceph-mon[25842]: pgmap v177: 193 pgs: 32 unknown, 19 creating+peering, 142 active+clean; 578 KiB data, 225 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 1.1 KiB/s wr, 21 op/s 2024-09-17T07:22:34.566 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:34 smithi144 ceph-mon[25842]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:34.566 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:34 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T07:22:34.566 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:34 smithi144 ceph-mon[25842]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T07:22:34.566 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:34 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:34.566 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:34 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:34 smithi175 ceph-mon[34607]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T07:22:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:34 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T07:22:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:34 smithi175 ceph-mon[34607]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T07:22:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:34 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-17T07:22:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:34 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:35.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:35 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:35.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:35 smithi175 ceph-mon[34607]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T07:22:35.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:35 smithi175 ceph-mon[34607]: pgmap v180: 193 pgs: 6 unknown, 187 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 158 KiB/s rd, 8.6 KiB/s wr, 325 op/s 2024-09-17T07:22:35.757 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:35 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/2540384307' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T07:22:35.758 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:35 smithi144 ceph-mon[25842]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T07:22:35.758 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:35 smithi144 ceph-mon[25842]: pgmap v180: 193 pgs: 6 unknown, 187 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 158 KiB/s rd, 8.6 KiB/s wr, 325 op/s 2024-09-17T07:22:36.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:36 smithi175 ceph-mon[34607]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:36.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:36 smithi175 ceph-mon[34607]: Cluster is now healthy 2024-09-17T07:22:36.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:36 smithi175 ceph-mon[34607]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T07:22:36.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:36 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T07:22:36.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:36 smithi144 ceph-mon[25842]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T07:22:36.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:36 smithi144 ceph-mon[25842]: Cluster is now healthy 2024-09-17T07:22:36.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:36 smithi144 ceph-mon[25842]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T07:22:36.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:36 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-17T07:22:37.555 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:22:37.567 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:22:37.568 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-09-17T07:22:37.771 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: Deploying daemon haproxy.nfs.foo.smithi175.uzngfs on smithi175 2024-09-17T07:22:37.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:37 smithi144 ceph-mon[25842]: pgmap v183: 225 pgs: 36 unknown, 189 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 181 KiB/s rd, 10 KiB/s wr, 372 op/s 2024-09-17T07:22:37.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T07:22:37.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T07:22:37.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-09-17T07:22:37.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:37.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: Deploying daemon haproxy.nfs.foo.smithi175.uzngfs on smithi175 2024-09-17T07:22:37.980 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:37 smithi175 ceph-mon[34607]: pgmap v183: 225 pgs: 36 unknown, 189 active+clean; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 181 KiB/s rd, 10 KiB/s wr, 372 op/s 2024-09-17T07:22:38.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:38 smithi144 ceph-mon[25842]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T07:22:38.881 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:38 smithi144 ceph-mon[25842]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T07:22:38.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:38 smithi175 ceph-mon[34607]: from='client.? 172.21.15.144:0/1090093961' entity='client.rgw.foorgw.smithi144.wiyfjn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T07:22:38.979 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:38 smithi175 ceph-mon[34607]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T07:22:39.909 INFO:teuthology.orchestra.run.smithi144.stdout:{ 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout: "bind": "/foouser", 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout: "cluster": "foo", 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout: "mode": "RW", 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout: "path": "/", 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout: "squash": "none" 2024-09-17T07:22:39.910 INFO:teuthology.orchestra.run.smithi144.stdout:} 2024-09-17T07:22:40.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:40 smithi175 ceph-mon[34607]: pgmap v185: 225 pgs: 14 unknown, 211 active+clean; 582 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s rd, 3.2 KiB/s wr, 109 op/s 2024-09-17T07:22:40.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:40 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:40.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:40 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:40.241 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:40 smithi144 ceph-mon[25842]: pgmap v185: 225 pgs: 14 unknown, 211 active+clean; 582 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s rd, 3.2 KiB/s wr, 109 op/s 2024-09-17T07:22:40.241 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:40 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:40.241 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:40 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:40.663 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T07:22:40.677 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-17T07:22:40.678 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:22:40.879 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:41.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:41 smithi175 ceph-mon[34607]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:41.269 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:41 smithi144 ceph-mon[25842]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:22:42.284 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:42 smithi144 ceph-mon[25842]: pgmap v186: 225 pgs: 225 active+clean; 583 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 5.8 KiB/s rd, 1.2 KiB/s wr, 15 op/s 2024-09-17T07:22:42.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:42 smithi175 ceph-mon[34607]: pgmap v186: 225 pgs: 225 active+clean; 583 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 5.8 KiB/s rd, 1.2 KiB/s wr, 15 op/s 2024-09-17T07:22:42.674 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:42.674 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:07.020161Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:07.020240Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:36.621723Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:07.020363Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:07.020421Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:07.020302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:07.020477Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T07:22:43.342 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:22:44.343 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:22:44.371 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:44.371 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.371 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.371 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.371 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.372 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: 10.0.31.144 is in 10.0.0.0/16 on smithi175 interface enp3s0f1 2024-09-17T07:22:44.372 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: 10.0.31.144 is in 10.0.0.0/16 on smithi144 interface enp3s0f1 2024-09-17T07:22:44.372 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: Deploying daemon keepalived.nfs.foo.smithi175.balgaf on smithi175 2024-09-17T07:22:44.372 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:44 smithi144 ceph-mon[25842]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 805 B/s wr, 6 op/s 2024-09-17T07:22:44.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:44.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: 10.0.31.144 is in 10.0.0.0/16 on smithi175 interface enp3s0f1 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: 10.0.31.144 is in 10.0.0.0/16 on smithi144 interface enp3s0f1 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: Deploying daemon keepalived.nfs.foo.smithi175.balgaf on smithi175 2024-09-17T07:22:44.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:44 smithi175 ceph-mon[34607]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 230 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 805 B/s wr, 6 op/s 2024-09-17T07:22:44.553 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:46.353 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:46.354 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:07.020161Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:07.020240Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:43.075058Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:07.020363Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:07.020421Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:07.020302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:07.020477Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T07:22:46.354 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:46 smithi144 ceph-mon[25842]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 831 B/s wr, 16 op/s 2024-09-17T07:22:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:46 smithi175 ceph-mon[34607]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 831 B/s wr, 16 op/s 2024-09-17T07:22:47.024 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:22:47.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:47 smithi144 ceph-mon[25842]: from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:47.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:47 smithi175 ceph-mon[34607]: from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:48.025 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:22:48.245 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:48.363 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:48 smithi144 ceph-mon[25842]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 716 B/s wr, 14 op/s 2024-09-17T07:22:48.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:48 smithi175 ceph-mon[34607]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 716 B/s wr, 14 op/s 2024-09-17T07:22:50.043 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:50.044 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:07.020161Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:07.020240Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:43.075058Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:07.020363Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:07.020421Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:07.020302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:07.020477Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T07:22:50.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:50 smithi144 ceph-mon[25842]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.8 KiB/s rd, 617 B/s wr, 12 op/s 2024-09-17T07:22:50.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:50 smithi175 ceph-mon[34607]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.8 KiB/s rd, 617 B/s wr, 12 op/s 2024-09-17T07:22:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:50.767 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:22:51.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:51 smithi175 ceph-mon[34607]: from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:51.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:51 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:51 smithi144 ceph-mon[25842]: from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:51.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:51 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:22:51.768 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:22:51.982 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:52.359 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:52 smithi144 ceph-mon[25842]: 10.0.31.144 is in 10.0.0.0/16 on smithi144 interface enp3s0f1 2024-09-17T07:22:52.359 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:52 smithi144 ceph-mon[25842]: 10.0.31.144 is in 10.0.0.0/16 on smithi175 interface enp3s0f1 2024-09-17T07:22:52.359 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:52 smithi144 ceph-mon[25842]: Deploying daemon keepalived.nfs.foo.smithi144.qhvlar on smithi144 2024-09-17T07:22:52.360 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:52 smithi144 ceph-mon[25842]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-17T07:22:52.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:52 smithi175 ceph-mon[34607]: 10.0.31.144 is in 10.0.0.0/16 on smithi144 interface enp3s0f1 2024-09-17T07:22:52.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:52 smithi175 ceph-mon[34607]: 10.0.31.144 is in 10.0.0.0/16 on smithi175 interface enp3s0f1 2024-09-17T07:22:52.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:52 smithi175 ceph-mon[34607]: Deploying daemon keepalived.nfs.foo.smithi144.qhvlar on smithi144 2024-09-17T07:22:52.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:52 smithi175 ceph-mon[34607]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-17T07:22:54.452 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:54 smithi144 ceph-mon[25842]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T07:22:54.453 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:54 smithi175 ceph-mon[34607]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 5.5 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T07:22:54.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:22:55.876 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:22:55.876 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:07.020161Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:07.020240Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:50.761431Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:07.020363Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:07.020421Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:07.020302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:07.020477Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T07:22:56.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:56 smithi175 ceph-mon[34607]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 5.4 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T07:22:56.502 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:56 smithi144 ceph-mon[25842]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 5.4 KiB/s rd, 85 B/s wr, 8 op/s 2024-09-17T07:22:56.523 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:22:57.415 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:57 smithi144 ceph-mon[25842]: from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:57.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:57 smithi175 ceph-mon[34607]: from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:22:57.524 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:22:57.901 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:22:58.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:22:58 smithi144 ceph-mon[25842]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:22:58.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:22:58 smithi175 ceph-mon[34607]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:00.180 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:00 smithi144 ceph-mon[25842]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:00.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:00 smithi175 ceph-mon[34607]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:00.933 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:23:00.933 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:07.020161Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:07.020240Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:23:00.242243Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:07.020363Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:07.020421Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:07.020302Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:07.020477Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T07:23:01.344 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:01 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.344 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:01 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.345 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:01 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.345 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:01 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.345 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:01 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:01.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:01 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:01 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:01 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:01 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:01.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:01 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:01.786 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:23:02.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:02 smithi144 ceph-mon[25842]: from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:02.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:02 smithi144 ceph-mon[25842]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:02.664 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:02 smithi175 ceph-mon[34607]: from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:02.664 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:02 smithi175 ceph-mon[34607]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:02.787 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:23:04.088 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:04.471 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:04 smithi144 ceph-mon[25842]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:04.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:04.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:04.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:04 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:04.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:04 smithi175 ceph-mon[34607]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-17T07:23:04.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:04.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:04.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:04 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:06.589 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:23:06.589 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:13.868634Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:13.868693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:23:00.242243Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "last_refresh": "2024-09-17T07:23:03.748573Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:13.868571Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:13.868492Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:13.868762Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:13.869006Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "last_refresh": "2024-09-17T07:23:03.748518Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T07:23:06.590 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:06 smithi144 ceph-mon[25842]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:06.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:06 smithi175 ceph-mon[34607]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:07.448 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:23:08.449 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:23:08.555 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:08 smithi144 ceph-mon[25842]: from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:08.556 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:08 smithi144 ceph-mon[25842]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:08.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:08 smithi175 ceph-mon[34607]: from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:08.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:08 smithi175 ceph-mon[34607]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:08.854 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:09.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]: dispatch 2024-09-17T07:23:09.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]: dispatch 2024-09-17T07:23:09.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:09 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:09.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]: dispatch 2024-09-17T07:23:09.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]: dispatch 2024-09-17T07:23:09.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:09 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:10.512 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:10 smithi175 ceph-mon[34607]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:10.513 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:10 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-17T07:23:10.513 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:10 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]': finished 2024-09-17T07:23:10.513 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:10 smithi175 ceph-mon[34607]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T07:23:10.568 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:10 smithi144 ceph-mon[25842]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T07:23:10.568 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-17T07:23:10.568 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:10 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.1c", "id": [5, 3]}]': finished 2024-09-17T07:23:10.568 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:10 smithi144 ceph-mon[25842]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T07:23:11.277 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:23:11.277 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:22:13.868821Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:22:13.868634Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:22:13.868693Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:22:13.868879Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:23:00.242243Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "last_refresh": "2024-09-17T07:23:03.748573Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:22:13.868571Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:22:13.868492Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:22:29.331540Z 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-17T07:22:15.181054Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:22:13.868762Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:22:13.869006Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:22:13.868935Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "last_refresh": "2024-09-17T07:23:03.748518Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T07:23:11.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:11 smithi144 ceph-mon[25842]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T07:23:11.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:11 smithi175 ceph-mon[34607]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T07:23:11.938 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T07:23:12.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:12 smithi144 ceph-mon[25842]: pgmap v203: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-17T07:23:12.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:12 smithi144 ceph-mon[25842]: from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:12.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:12 smithi175 ceph-mon[34607]: pgmap v203: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-17T07:23:12.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:12 smithi175 ceph-mon[34607]: from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:12.939 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:23:13.161 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: Checking dashboard <-> RGW credentials 2024-09-17T07:23:13.616 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: Reconfiguring prometheus.smithi144 (dependencies changed)... 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: pgmap v204: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:13.617 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:13 smithi144 ceph-mon[25842]: Reconfiguring daemon prometheus.smithi144 on smithi144 2024-09-17T07:23:13.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: Checking dashboard <-> RGW credentials 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: Reconfiguring prometheus.smithi144 (dependencies changed)... 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: pgmap v204: 225 pgs: 225 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:13.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:13 smithi175 ceph-mon[34607]: Reconfiguring daemon prometheus.smithi144 on smithi144 2024-09-17T07:23:16.416 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:16 smithi144 ceph-mon[25842]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T07:23:16.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:16 smithi175 ceph-mon[34607]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T07:23:17.123 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:23:17.123 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:23:12.402465Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:23:03.748011Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:23:03.748086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:23:12.402519Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:23:00.242243Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "last_refresh": "2024-09-17T07:23:03.748573Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:23:03.748200Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:23:03.748254Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:23:13.023920Z 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-17T07:22:15.181054Z", "last_refresh": "2024-09-17T07:23:12.402929Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:23:03.748145Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:23:03.748308Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:23:12.402571Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "last_refresh": "2024-09-17T07:23:03.748518Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T07:23:18.058 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-17T07:23:18.058 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T07:23:18.071 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-17T07:23:18.072 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T07:23:18.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:18 smithi144 ceph-mon[25842]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T07:23:18.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:18 smithi144 ceph-mon[25842]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:18 smithi175 ceph-mon[34607]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 255 B/s wr, 1 op/s 2024-09-17T07:23:18.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:18 smithi175 ceph-mon[34607]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:18.886 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:20.345 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:20 smithi144 ceph-mon[25842]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 207 B/s wr, 1 op/s 2024-09-17T07:23:20.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:20 smithi175 ceph-mon[34607]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 207 B/s wr, 1 op/s 2024-09-17T07:23:20.805 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-09-17T07:23:20.805 INFO:teuthology.orchestra.run.smithi144.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T07:16:59.319044Z", "last_refresh": "2024-09-17T07:23:12.402465Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:22.313724Z 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-17T07:16:53.723385Z", "last_refresh": "2024-09-17T07:23:03.748011Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:26.387325Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T07:16:52.496001Z", "last_refresh": "2024-09-17T07:23:03.748086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T07:16:56.975042Z", "last_refresh": "2024-09-17T07:23:12.402519Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:23:00.242243Z 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.144/16"}, "status": {"created": "2024-09-17T07:22:15.185481Z", "last_refresh": "2024-09-17T07:23:03.748573Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.144/16"}}, {"events": ["2024-09-17T07:18:33.363434Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T07:16:50.586682Z", "last_refresh": "2024-09-17T07:23:03.748200Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:42.950379Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi144:172.21.15.144=smithi144", "smithi175:172.21.15.175=smithi175"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T07:17:42.170147Z", "last_refresh": "2024-09-17T07:23:03.748254Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T07:23:13.023920Z 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-17T07:22:15.181054Z", "last_refresh": "2024-09-17T07:23:12.402929Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:18:30.778045Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T07:16:58.165286Z", "last_refresh": "2024-09-17T07:23:03.748145Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T07:18:52.013241Z 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-17T07:18:52.009471Z", "last_refresh": "2024-09-17T07:23:03.748308Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T07:18:42.955567Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T07:16:55.788581Z", "last_refresh": "2024-09-17T07:23:12.402571Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T07:22:26.435055Z 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-17T07:22:26.429767Z", "last_refresh": "2024-09-17T07:23:03.748518Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T07:23:21.770 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-17T07:23:21.770 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T07:23:21.780 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:23:21.781 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-17T07:23:21.808 INFO:teuthology.orchestra.run.smithi144.stderr:+ mkdir /mnt/foo 2024-09-17T07:23:21.814 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-17T07:23:21.878 INFO:teuthology.orchestra.run.smithi144.stderr:+ sleep 5 2024-09-17T07:23:22.461 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 188 B/s wr, 1 op/s 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:23:22.462 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:22 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:22.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T07:23:22.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 188 B/s wr, 1 op/s 2024-09-17T07:23:22.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:22.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:22.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:23:22.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T07:23:22.731 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:22 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:24 smithi175 ceph-mon[34607]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:24.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:24 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:24.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:24 smithi144 ceph-mon[25842]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:24.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:24 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:26.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:26 smithi144 ceph-mon[25842]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:26.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:26 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:26.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:26 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:26.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:26 smithi175 ceph-mon[34607]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:26.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:26 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:26.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:26 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:26.881 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.144:/foouser /mnt/foo' 2024-09-17T07:23:26.946 INFO:teuthology.orchestra.run.smithi144.stderr:+ mount -t nfs 10.0.31.144:/foouser /mnt/foo 2024-09-17T07:23:27.673 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2024-09-17T07:23:27.740 INFO:teuthology.orchestra.run.smithi144.stderr:+ test -d /mnt/foo/foobucket 2024-09-17T07:23:27.745 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-17T07:23:27.808 INFO:teuthology.orchestra.run.smithi144.stderr:+ find /mnt/foo -ls 2024-09-17T07:23:27.813 INFO:teuthology.orchestra.run.smithi144.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Sep 17 07:22 /mnt/foo 2024-09-17T07:23:27.814 INFO:teuthology.orchestra.run.smithi144.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Sep 17 07:22 /mnt/foo/foobucket 2024-09-17T07:23:27.814 INFO:teuthology.orchestra.run.smithi144.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 17 07:22 /mnt/foo/foobucket/myobject 2024-09-17T07:23:27.815 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2024-09-17T07:23:27.881 INFO:teuthology.orchestra.run.smithi144.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2024-09-17T07:23:27.884 INFO:teuthology.orchestra.run.smithi144.stdout:thebody 2024-09-17T07:23:27.885 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2024-09-17T07:23:27.951 INFO:teuthology.orchestra.run.smithi144.stderr:+ echo test 2024-09-17T07:23:27.967 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-17T07:23:28.031 INFO:teuthology.orchestra.run.smithi144.stderr:+ sync 2024-09-17T07:23:28.256 INFO:teuthology.run_tasks:Running task python... 2024-09-17T07:23:28.271 INFO:tasks.python:Running python on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:23:28.271 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-17T07:23:28.271 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T07:23:28.583 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:28 smithi144 ceph-mon[25842]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 597 B/s rd, 0 op/s 2024-09-17T07:23:28.586 INFO:teuthology.orchestra.run.smithi144.stdout:b'test\n' 2024-09-17T07:23:28.642 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T07:23:28.652 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:23:28.652 DEBUG:teuthology.orchestra.run.smithi144:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-17T07:23:28.677 INFO:teuthology.orchestra.run.smithi144.stderr:+ umount /mnt/foo 2024-09-17T07:23:28.695 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:23:28.706 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:23:28.706 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export rm foo /foouser' 2024-09-17T07:23:28.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:28 smithi175 ceph-mon[34607]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 597 B/s rd, 0 op/s 2024-09-17T07:23:29.069 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:30.631 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:30 smithi144 ceph-mon[25842]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-17T07:23:30.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:30 smithi175 ceph-mon[34607]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-17T07:23:32.480 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T07:23:32.480 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.480 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.480 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:32.481 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:32.481 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.481 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:32.481 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:32 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.510 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-17T07:23:32.712 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:32.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-17T07:23:32.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:32.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:32 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:33.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:33 smithi144 ceph-mon[25842]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:33.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:33 smithi144 ceph-mon[25842]: Checking dashboard <-> RGW credentials 2024-09-17T07:23:33.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:33 smithi175 ceph-mon[34607]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:33.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:33 smithi175 ceph-mon[34607]: Checking dashboard <-> RGW credentials 2024-09-17T07:23:34.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:34 smithi144 ceph-mon[25842]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 9.7 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T07:23:34.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:34 smithi175 ceph-mon[34607]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 9.7 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T07:23:35.179 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T07:23:35.190 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:23:35.190 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-17T07:23:35.718 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: from='client.14768 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: Remove service ingress.nfs.foo 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: Remove service nfs.foo 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:35.801 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:35 smithi144 ceph-mon[25842]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-17T07:23:35.880 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: from='client.14768 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:35.880 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: Remove service ingress.nfs.foo 2024-09-17T07:23:35.880 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:35.880 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-17T07:23:35.881 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: Remove service nfs.foo 2024-09-17T07:23:35.881 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:35.881 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:35 smithi175 ceph-mon[34607]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-17T07:23:37.702 INFO:teuthology.orchestra.run.smithi144.stdout:167 167 2024-09-17T07:23:38.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:38 smithi175 ceph-mon[34607]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 14 op/s 2024-09-17T07:23:38.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:38.230 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:38 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:38.291 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:38 smithi144 ceph-mon[25842]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 14 op/s 2024-09-17T07:23:38.291 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:38.292 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:38 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:38.293 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T07:23:38.937 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:39.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:39 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:39.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:39 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:40.376 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:40 smithi144 ceph-mon[25842]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 14 op/s 2024-09-17T07:23:40.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:40 smithi175 ceph-mon[34607]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 14 op/s 2024-09-17T07:23:41.437 INFO:teuthology.orchestra.run.smithi144.stdout:Backend: cephadm 2024-09-17T07:23:41.438 INFO:teuthology.orchestra.run.smithi144.stdout:Available: Yes 2024-09-17T07:23:41.438 INFO:teuthology.orchestra.run.smithi144.stdout:Paused: No 2024-09-17T07:23:42.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:42 smithi144 ceph-mon[25842]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-17T07:23:42.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:42 smithi175 ceph-mon[34607]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-17T07:23:42.494 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T07:23:43.308 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:43.460 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:43 smithi144 ceph-mon[25842]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:43.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:43 smithi175 ceph-mon[34607]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:44.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:44 smithi175 ceph-mon[34607]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T07:23:44.491 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:44 smithi144 ceph-mon[25842]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:alertmanager.smithi144 smithi144 *:9093,9094 running (4m) 13s ago 6m 24.4M - 0.25.0 c8568f914cd2 3e39bb226c64 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter.smithi144 smithi144 running (6m) 13s ago 6m 7495k - 18.2.4-855-g19e2a2be 980a0bfcd684 b5c002d9d476 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter.smithi175 smithi175 running (5m) 7s ago 5m 7499k - 18.2.4-855-g19e2a2be 980a0bfcd684 64b9a8eedee0 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:crash.smithi144 smithi144 running (6m) 13s ago 6m 6891k - 18.2.4-855-g19e2a2be 980a0bfcd684 a21ca9a6e633 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:crash.smithi175 smithi175 running (5m) 7s ago 5m 6895k - 18.2.4-855-g19e2a2be 980a0bfcd684 5b7574eaa368 2024-09-17T07:23:45.174 INFO:teuthology.orchestra.run.smithi144.stdout:grafana.smithi144 smithi144 *:3000 running (4m) 13s ago 5m 83.6M - 9.4.7 954c08fa6188 41dc69b87afc 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:haproxy.nfs.foo.smithi144.ntrjvc smithi144 *:2049,9049 running (69s) 13s ago 68s 6400k - 2.3.17-d1c9119 e85424b0d443 7b900f9ac281 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:haproxy.nfs.foo.smithi175.uzngfs smithi175 *:2049,9049 running (62s) 7s ago 62s 12.4M - 2.3.17-d1c9119 e85424b0d443 079026d1c193 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:keepalived.nfs.foo.smithi144.qhvlar smithi144 running (45s) 13s ago 44s 1770k - 2.2.4 4a3a1ff181d9 d338f36f8ceb 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:keepalived.nfs.foo.smithi175.balgaf smithi175 running (55s) 7s ago 54s 1761k - 2.2.4 4a3a1ff181d9 9d698a07234b 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:mgr.smithi144.lblkyt smithi144 *:9283,8765,8443 running (7m) 13s ago 7m 500M - 18.2.4-855-g19e2a2be 980a0bfcd684 5fc8135b7703 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:mgr.smithi175.okpzhb smithi175 *:8443,9283,8765 running (5m) 7s ago 5m 441M - 18.2.4-855-g19e2a2be 980a0bfcd684 7c1f30cd44ee 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:mon.smithi144 smithi144 running (7m) 13s ago 7m 48.9M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 4fcc6b81addc 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:mon.smithi175 smithi175 running (5m) 7s ago 5m 38.2M 2048M 18.2.4-855-g19e2a2be 980a0bfcd684 9a0f85788058 2024-09-17T07:23:45.175 INFO:teuthology.orchestra.run.smithi144.stdout:nfs.foo.0.0.smithi144.vwdshx smithi144 *:12049 running (76s) 13s ago 75s 97.7M - 5.5 980a0bfcd684 3edbbf2360a6 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter.smithi144 smithi144 *:9100 running (6m) 13s ago 6m 15.9M - 1.5.0 0da6a335fe13 44b6c4ea0b0a 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter.smithi175 smithi175 *:9100 running (5m) 7s ago 5m 15.1M - 1.5.0 0da6a335fe13 85b78c42faa3 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.0 smithi175 running (3m) 7s ago 3m 51.3M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 d04fba2cae77 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.1 smithi144 running (3m) 13s ago 3m 50.5M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 0eaf211d6774 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.2 smithi175 running (3m) 7s ago 3m 53.2M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 ff02fa0dbcb8 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.3 smithi144 running (3m) 13s ago 3m 52.0M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 c9168b4fbefc 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.4 smithi175 running (3m) 7s ago 3m 48.7M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 afb8d9190b5e 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.5 smithi144 running (3m) 13s ago 3m 53.2M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 836b92c3ed00 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.6 smithi175 running (3m) 7s ago 3m 56.8M 3728M 18.2.4-855-g19e2a2be 980a0bfcd684 9befd77f132d 2024-09-17T07:23:45.176 INFO:teuthology.orchestra.run.smithi144.stdout:osd.7 smithi144 running (3m) 13s ago 3m 49.1M 2960M 18.2.4-855-g19e2a2be 980a0bfcd684 8ae65a7f1f60 2024-09-17T07:23:45.177 INFO:teuthology.orchestra.run.smithi144.stdout:prometheus.smithi144 smithi144 *:9095 running (24s) 13s ago 5m 35.0M - 2.43.0 a07b618ecd1d 5517363efe7f 2024-09-17T07:23:45.177 INFO:teuthology.orchestra.run.smithi144.stdout:rgw.foorgw.smithi144.wiyfjn smithi144 *:8800 running (79s) 13s ago 79s 75.2M - 18.2.4-855-g19e2a2be 980a0bfcd684 9dfb229c7a7f 2024-09-17T07:23:45.177 INFO:teuthology.orchestra.run.smithi144.stdout:rgw.foorgw.smithi175.ojpwrm smithi175 *:8800 running (84s) 7s ago 83s 74.0M - 18.2.4-855-g19e2a2be 980a0bfcd684 85b9eac74406 2024-09-17T07:23:45.855 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T07:23:46.399 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:46 smithi175 ceph-mon[34607]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:46.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:46 smithi175 ceph-mon[34607]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:46.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:46 smithi144 ceph-mon[25842]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T07:23:46.630 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:46 smithi144 ceph-mon[25842]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:48.381 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:48 smithi144 ceph-mon[25842]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T07:23:48.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:48 smithi175 ceph-mon[34607]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T07:23:48.783 INFO:teuthology.orchestra.run.smithi144.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T07:23:48.783 INFO:teuthology.orchestra.run.smithi144.stdout:alertmanager ?:9093,9094 1/1 16s ago 6m count:1 2024-09-17T07:23:48.783 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-exporter 2/2 16s ago 6m * 2024-09-17T07:23:48.783 INFO:teuthology.orchestra.run.smithi144.stdout:crash 2/2 16s ago 6m * 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:grafana ?:3000 1/1 16s ago 6m count:1 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:ingress.nfs.foo 10.0.31.144:2049,9049 4/4 93s count:2 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:mgr 2/2 16s ago 6m count:2 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:mon 2/2 16s ago 6m smithi144:172.21.15.144=smithi144;smithi175:172.21.15.175=smithi175;count:2 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:nfs.foo ?:12049 1/1 93s count:1 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:node-exporter ?:9100 2/2 16s ago 6m * 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:osd.all-available-devices 8 16s ago 4m * 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:prometheus ?:9095 1/1 16s ago 6m count:1 2024-09-17T07:23:48.784 INFO:teuthology.orchestra.run.smithi144.stdout:rgw.foorgw ?:8800 2/2 16s ago 82s count:2 2024-09-17T07:23:49.655 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T07:23:50.047 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:50.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:50.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: pgmap v222: 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-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:50 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: pgmap v222: 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-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' 2024-09-17T07:23:50.503 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:50 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-17T07:23:51.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:51 smithi144 ceph-mon[25842]: Removing orphan daemon nfs.foo.0.0.smithi144.vwdshx... 2024-09-17T07:23:51.472 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:51 smithi144 ceph-mon[25842]: Removing daemon nfs.foo.0.0.smithi144.vwdshx from smithi144 -- ports [12049] 2024-09-17T07:23:51.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:51 smithi175 ceph-mon[34607]: Removing orphan daemon nfs.foo.0.0.smithi144.vwdshx... 2024-09-17T07:23:51.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:51 smithi175 ceph-mon[34607]: Removing daemon nfs.foo.0.0.smithi144.vwdshx from smithi144 -- ports [12049] 2024-09-17T07:23:51.999 INFO:teuthology.orchestra.run.smithi144.stdout:HOST ADDR LABELS STATUS 2024-09-17T07:23:51.999 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 172.21.15.144 2024-09-17T07:23:51.999 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 172.21.15.175 2024-09-17T07:23:51.999 INFO:teuthology.orchestra.run.smithi144.stdout:2 hosts in cluster 2024-09-17T07:23:52.357 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:52 smithi144 ceph-mon[25842]: pgmap v223: 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-17T07:23:52.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:52 smithi175 ceph-mon[34607]: pgmap v223: 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-17T07:23:52.775 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T07:23:52.987 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:53.380 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:53 smithi144 ceph-mon[25842]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:53.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:53 smithi175 ceph-mon[34607]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:54.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:54 smithi175 ceph-mon[34607]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:54.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:54 smithi175 ceph-mon[34607]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:54.542 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:54 smithi144 ceph-mon[25842]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:54.542 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:54 smithi144 ceph-mon[25842]: from='mgr.14209 172.21.15.144:0/1203773874' entity='mgr.smithi144.lblkyt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-17T07:23:54.950 INFO:teuthology.orchestra.run.smithi144.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T07:23:54.950 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT62050085400BGN 372G No 95s ago Has a FileSystem, LVM detected 2024-09-17T07:23:54.950 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme1n1 ssd Linux_7f92df8d0f451d568fbc 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.950 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme2n1 ssd Linux_dea71e366a39d07cc00f 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.950 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme3n1 ssd Linux_21fb870e18227381293c 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi144 /dev/nvme4n1 ssd Linux_5a3ac95ac9c891cc3cc8 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300M0400BGN 372G No 104s ago Has a FileSystem, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme1n1 ssd Linux_b2c8e4c9f39869b04136 89.4G No 104s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme2n1 ssd Linux_7452f9f7f1974b9b07a5 89.4G No 104s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme3n1 ssd Linux_dea26104e97055a36259 89.4G No 104s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:54.951 INFO:teuthology.orchestra.run.smithi144.stdout:smithi175 /dev/nvme4n1 ssd Linux_c9219db9d0d04b4c0648 89.4G No 104s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T07:23:55.721 DEBUG:teuthology.orchestra.run.smithi144:> 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 95c1565a-74c4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-17T07:23:55.923 INFO:teuthology.orchestra.run.smithi144.stderr:Inferring config /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/mon.smithi144/config 2024-09-17T07:23:56.298 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:56 smithi144 ceph-mon[25842]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:56.298 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:56 smithi144 ceph-mon[25842]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:56.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:56 smithi175 ceph-mon[34607]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:56.480 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:56 smithi175 ceph-mon[34607]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:57.826 INFO:teuthology.orchestra.run.smithi144.stdout:osd.all-available-devices 8 19s ago 5m * 2024-09-17T07:23:58.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:58 smithi175 ceph-mon[34607]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:58.562 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:58 smithi144 ceph-mon[25842]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T07:23:58.582 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-17T07:23:58.593 INFO:tasks.vip:Removing 10.0.15.144 (and any VIPs) on smithi144.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T07:23:58.593 DEBUG:teuthology.orchestra.run.smithi144:> sudo ip addr del 10.0.15.144/16 dev enp3s0f1 2024-09-17T07:23:58.621 DEBUG:teuthology.orchestra.run.smithi144:> sudo ip addr del 10.0.31.144/16 dev enp3s0f1 2024-09-17T07:23:58.686 INFO:tasks.vip:Removing 10.0.15.175 (and any VIPs) on smithi175.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T07:23:58.687 DEBUG:teuthology.orchestra.run.smithi175:> sudo ip addr del 10.0.15.175/16 dev enp3s0f1 2024-09-17T07:23:58.720 DEBUG:teuthology.orchestra.run.smithi175:> sudo ip addr del 10.0.31.144/16 dev enp3s0f1 2024-09-17T07:23:58.788 INFO:teuthology.orchestra.run.smithi175.stderr:Error: ipv4: Address not found. 2024-09-17T07:23:58.790 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-17T07:23:58.792 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T07:23:58.802 INFO:tasks.cephadm:Teardown begin 2024-09-17T07:23:58.803 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:23:58.828 DEBUG:teuthology.orchestra.run.smithi175:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:23:58.859 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T07:23:58.859 DEBUG:teuthology.orchestra.run.smithi144:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T07:23:58.883 DEBUG:teuthology.orchestra.run.smithi175:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T07:23:58.915 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T07:23:58.915 INFO:tasks.cephadm.mon.smithi144:Stopping mon.smithi144... 2024-09-17T07:23:58.916 DEBUG:teuthology.orchestra.run.smithi144:> sudo systemctl stop ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144 2024-09-17T07:23:59.130 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:58 smithi144 systemd[1]: Stopping Ceph mon.smithi144 for 95c1565a-74c4-11ef-bceb-c7b262605968... 2024-09-17T07:23:59.384 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:59 smithi144 ceph-mon[25842]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:59.384 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:59 smithi144 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144[25819]: 2024-09-17T07:23:59.310+0000 7fd28036a640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi144 -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-17T07:23:59.384 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:59 smithi144 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144[25819]: 2024-09-17T07:23:59.310+0000 7fd28036a640 -1 mon.smithi144@0(leader) e2 *** Got Signal Terminated *** 2024-09-17T07:23:59.479 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:23:59 smithi175 ceph-mon[34607]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T07:23:59.880 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:23:59 smithi144 podman[93905]: 2024-09-17 07:23:59.585116385 +0000 UTC m=+0.475506650 container died 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-17T07:24:00.318 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:24:00 smithi144 podman[93905]: 2024-09-17 07:24:00.066405219 +0000 UTC m=+0.956795475 container cleanup 4fcc6b81addcfcef8e96f2e29bd031a6ecb14d581a137ede13271e790efb50ad (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:19e2a2beb6f41a3ab62650e38614eb29b59dcbb9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, RELEASE=reef-19e2a2b) 2024-09-17T07:24:00.318 INFO:journalctl@ceph.mon.smithi144.smithi144.stdout:Sep 17 07:24:00 smithi144 bash[93905]: ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi144 2024-09-17T07:24:00.457 DEBUG:teuthology.orchestra.run.smithi144:> sudo pkill -f 'journalctl -f -n 0 -u ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi144.service' 2024-09-17T07:24:00.517 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T07:24:00.518 INFO:tasks.cephadm.mon.smithi144:Stopped mon.smithi144 2024-09-17T07:24:00.518 INFO:tasks.cephadm.mon.smithi175:Stopping mon.smithi175... 2024-09-17T07:24:00.518 DEBUG:teuthology.orchestra.run.smithi175:> sudo systemctl stop ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi175 2024-09-17T07:24:00.908 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:00 smithi175 systemd[1]: Stopping Ceph mon.smithi175 for 95c1565a-74c4-11ef-bceb-c7b262605968... 2024-09-17T07:24:01.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:00 smithi175 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175[34584]: 2024-09-17T07:24:00.907+0000 7f388c853640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi175 -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-17T07:24:01.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:00 smithi175 ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175[34584]: 2024-09-17T07:24:00.907+0000 7f388c853640 -1 mon.smithi175@1(peon) e2 *** Got Signal Terminated *** 2024-09-17T07:24:01.229 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:01 smithi175 podman[64510]: 2024-09-17 07:24:01.061535366 +0000 UTC m=+0.345691125 container died 9a0f85788058e93c308c79137d39127925c667ecb754d9645a48fd17b980ee54 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , RELEASE=reef-19e2a2b, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2) 2024-09-17T07:24:01.729 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:01 smithi175 podman[64510]: 2024-09-17 07:24:01.556675556 +0000 UTC m=+0.840831360 container cleanup 9a0f85788058e93c308c79137d39127925c667ecb754d9645a48fd17b980ee54 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:70b7810862ffedc21315a6c67a84878d4bbd16155279a41a670f6f6be7488da9, name=ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=reef-19e2a2b, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-09-17T07:24:01.730 INFO:journalctl@ceph.mon.smithi175.smithi175.stdout:Sep 17 07:24:01 smithi175 bash[64510]: ceph-95c1565a-74c4-11ef-bceb-c7b262605968-mon-smithi175 2024-09-17T07:24:01.918 DEBUG:teuthology.orchestra.run.smithi175:> sudo pkill -f 'journalctl -f -n 0 -u ceph-95c1565a-74c4-11ef-bceb-c7b262605968@mon.smithi175.service' 2024-09-17T07:24:01.965 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T07:24:01.965 INFO:tasks.cephadm.mon.smithi175:Stopped mon.smithi175 2024-09-17T07:24:01.965 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T07:24:03.282 INFO:teuthology.orchestra.run.smithi144.stdout:Deleting cluster with fsid: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:25:00.446 DEBUG:teuthology.orchestra.run.smithi175:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T07:25:00.601 INFO:teuthology.orchestra.run.smithi175.stdout:Deleting cluster with fsid: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:25:53.054 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:25:53.089 DEBUG:teuthology.orchestra.run.smithi175:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T07:25:53.116 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T07:25:53.118 DEBUG:teuthology.misc:Transferring archived files from smithi144:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi144/crash 2024-09-17T07:25:53.118 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T07:25:53.172 INFO:teuthology.orchestra.run.smithi144.stderr:tar: /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T07:25:53.172 INFO:teuthology.orchestra.run.smithi144.stderr:tar: Error is not recoverable: exiting now 2024-09-17T07:25:53.174 DEBUG:teuthology.misc:Transferring archived files from smithi175:/var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi175/crash 2024-09-17T07:25:53.175 DEBUG:teuthology.orchestra.run.smithi175:> sudo tar c -f - -C /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T07:25:53.211 INFO:teuthology.orchestra.run.smithi175.stderr:tar: /var/lib/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T07:25:53.211 INFO:teuthology.orchestra.run.smithi175.stderr:tar: Error is not recoverable: exiting now 2024-09-17T07:25:53.212 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T07:25:53.212 DEBUG:teuthology.orchestra.run.smithi144:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/95c1565a-74c4-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-17T07:25:53.240 INFO:teuthology.orchestra.run.smithi144.stderr:grep: /var/log/ceph/95c1565a-74c4-11ef-bceb-c7b262605968/ceph.log: No such file or directory 2024-09-17T07:25:53.242 INFO:tasks.cephadm:Compressing logs... 2024-09-17T07:25:53.242 DEBUG:teuthology.orchestra.run.smithi144:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T07:25:53.285 DEBUG:teuthology.orchestra.run.smithi175:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T07:25:53.308 INFO:teuthology.orchestra.run.smithi144.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T07:25:53.308 INFO:teuthology.orchestra.run.smithi175.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-09-17T07:25:54.895 INFO:tasks.cephadm:Archiving logs... 2024-09-17T07:25:54.895 DEBUG:teuthology.misc:Transferring archived files from smithi144:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi144/log 2024-09-17T07:25:54.896 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T07:25:55.163 DEBUG:teuthology.misc:Transferring archived files from smithi175:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi175/log 2024-09-17T07:25:55.164 DEBUG:teuthology.orchestra.run.smithi175:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T07:25:55.357 INFO:tasks.cephadm:Removing cluster... 2024-09-17T07:25:55.357 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 --force 2024-09-17T07:25:55.496 INFO:teuthology.orchestra.run.smithi144.stdout:Deleting cluster with fsid: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:25:55.626 DEBUG:teuthology.orchestra.run.smithi175:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 95c1565a-74c4-11ef-bceb-c7b262605968 --force 2024-09-17T07:25:55.769 INFO:teuthology.orchestra.run.smithi175.stdout:Deleting cluster with fsid: 95c1565a-74c4-11ef-bceb-c7b262605968 2024-09-17T07:25:55.896 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T07:25:55.897 DEBUG:teuthology.orchestra.run.smithi144:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T07:25:55.913 DEBUG:teuthology.orchestra.run.smithi175:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T07:25:55.928 INFO:tasks.cephadm:Teardown complete 2024-09-17T07:25:55.928 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-17T07:25:55.940 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi144:/dev/vg_nvme/lv_1... 2024-09-17T07:25:55.940 DEBUG:teuthology.orchestra.run.smithi144:> sudo nvme disconnect -n lv_1 2024-09-17T07:25:56.106 INFO:teuthology.orchestra.run.smithi144.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T07:25:56.108 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi144:/dev/vg_nvme/lv_2... 2024-09-17T07:25:56.108 DEBUG:teuthology.orchestra.run.smithi144:> sudo nvme disconnect -n lv_2 2024-09-17T07:25:56.263 INFO:teuthology.orchestra.run.smithi144.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T07:25:56.265 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi144:/dev/vg_nvme/lv_3... 2024-09-17T07:25:56.265 DEBUG:teuthology.orchestra.run.smithi144:> sudo nvme disconnect -n lv_3 2024-09-17T07:25:56.398 INFO:teuthology.orchestra.run.smithi144.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T07:25:56.400 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi144:/dev/vg_nvme/lv_4... 2024-09-17T07:25:56.400 DEBUG:teuthology.orchestra.run.smithi144:> sudo nvme disconnect -n lv_4 2024-09-17T07:25:56.549 INFO:teuthology.orchestra.run.smithi144.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T07:25:56.551 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-09-17T07:25:56.551 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/scratch_devs 2024-09-17T07:25:56.584 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi175:/dev/vg_nvme/lv_1... 2024-09-17T07:25:56.584 DEBUG:teuthology.orchestra.run.smithi175:> sudo nvme disconnect -n lv_1 2024-09-17T07:25:56.734 INFO:teuthology.orchestra.run.smithi175.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T07:25:56.735 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi175:/dev/vg_nvme/lv_2... 2024-09-17T07:25:56.736 DEBUG:teuthology.orchestra.run.smithi175:> sudo nvme disconnect -n lv_2 2024-09-17T07:25:56.890 INFO:teuthology.orchestra.run.smithi175.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T07:25:56.891 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi175:/dev/vg_nvme/lv_3... 2024-09-17T07:25:56.891 DEBUG:teuthology.orchestra.run.smithi175:> sudo nvme disconnect -n lv_3 2024-09-17T07:25:57.049 INFO:teuthology.orchestra.run.smithi175.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T07:25:57.050 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi175:/dev/vg_nvme/lv_4... 2024-09-17T07:25:57.050 DEBUG:teuthology.orchestra.run.smithi175:> sudo nvme disconnect -n lv_4 2024-09-17T07:25:57.190 INFO:teuthology.orchestra.run.smithi175.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T07:25:57.191 DEBUG:teuthology.orchestra.run.smithi175:> set -ex 2024-09-17T07:25:57.191 DEBUG:teuthology.orchestra.run.smithi175:> sudo dd of=/scratch_devs 2024-09-17T07:25:57.217 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T07:25:57.620 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T07:25:57.621 DEBUG:teuthology.orchestra.run.smithi144:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T07:25:57.624 DEBUG:teuthology.orchestra.run.smithi175:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T07:25:57.639 INFO:teuthology.orchestra.run.smithi144.stderr:bash: line 1: ntpq: command not found 2024-09-17T07:25:57.640 INFO:teuthology.orchestra.run.smithi175.stderr:bash: line 1: ntpq: command not found 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:=============================================================================== 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:^* hv01.front.sepia.ceph.com 3 6 377 1 +481us[ +494us] +/- 42ms 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 63 -4147us[-4136us] +/- 83ms 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 0 +2784us[+2784us] +/- 67ms 2024-09-17T07:25:57.644 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:=============================================================================== 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:^* hv01.front.sepia.ceph.com 3 6 377 0 +422us[ +453us] +/- 42ms 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 1 -4225us[-4194us] +/- 84ms 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 64 +2720us[+2753us] +/- 66ms 2024-09-17T07:25:57.646 INFO:teuthology.orchestra.run.smithi175.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T07:25:57.647 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T07:25:58.059 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T07:25:58.060 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T07:25:58.292 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:25:58.380 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:25:58.456 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:25:58.485 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:25:58.486 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:25:58.516 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:25:58.516 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T07:25:58.527 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T07:25:58.539 INFO:teuthology.task.internal:Duration was 882.009635 seconds 2024-09-17T07:25:58.540 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T07:25:58.551 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T07:25:58.551 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T07:25:58.554 DEBUG:teuthology.orchestra.run.smithi175:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T07:25:58.592 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:25:58.597 INFO:teuthology.orchestra.run.smithi175.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T07:25:58.924 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T07:25:58.924 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi144.front.sepia.ceph.com 2024-09-17T07:25:58.924 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:25:58.986 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi175.front.sepia.ceph.com 2024-09-17T07:25:58.986 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:25:59.014 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T07:25:59.014 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T07:25:59.028 DEBUG:teuthology.orchestra.run.smithi175:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T07:25:59.081 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T07:25:59.081 DEBUG:teuthology.orchestra.run.smithi144:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T07:25:59.095 DEBUG:teuthology.orchestra.run.smithi175:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T07:25:59.380 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T07:25:59.392 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T07:25:59.393 DEBUG:teuthology.orchestra.run.smithi144:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T07:25:59.418 DEBUG:teuthology.orchestra.run.smithi175:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T07:25:59.444 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T07:25:59.454 DEBUG:teuthology.orchestra.run.smithi144:> 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-17T07:25:59.461 DEBUG:teuthology.orchestra.run.smithi175:> 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-17T07:25:59.481 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = core 2024-09-17T07:25:59.507 INFO:teuthology.orchestra.run.smithi175.stdout:kernel.core_pattern = core 2024-09-17T07:25:59.531 DEBUG:teuthology.orchestra.run.smithi144:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T07:25:59.562 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:25:59.562 DEBUG:teuthology.orchestra.run.smithi175:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T07:25:59.586 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T07:25:59.586 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T07:25:59.599 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T07:25:59.600 DEBUG:teuthology.misc:Transferring archived files from smithi144:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi144 2024-09-17T07:25:59.600 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T07:25:59.643 DEBUG:teuthology.misc:Transferring archived files from smithi175:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_22:08:02-orch-reef-distro-default-smithi/7908164/remote/smithi175 2024-09-17T07:25:59.643 DEBUG:teuthology.orchestra.run.smithi175:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T07:25:59.677 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T07:25:59.678 DEBUG:teuthology.orchestra.run.smithi144:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T07:25:59.680 DEBUG:teuthology.orchestra.run.smithi175:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T07:25:59.727 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T07:25:59.739 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T07:25:59.740 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T07:25:59.752 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T07:25:59.752 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T07:25:59.755 DEBUG:teuthology.orchestra.run.smithi175:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T07:25:59.767 INFO:teuthology.orchestra.run.smithi144.stdout: 265707 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 07:25 /home/ubuntu/cephtest 2024-09-17T07:25:59.785 INFO:teuthology.orchestra.run.smithi175.stdout: 265730 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 07:25 /home/ubuntu/cephtest 2024-09-17T07:25:59.785 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T07:25:59.798 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T07:25:59.824 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-user 3-final} duration: 882.0096352100372 owner: scheduled_teuthology@teuthology success: true 2024-09-17T07:25:59.825 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T07:25:59.908 INFO:teuthology.run:pass